From owner-svn-src-head@freebsd.org Fri Jan 12 12:14:16 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F629E60D4A; Fri, 12 Jan 2018 12:14:16 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3811B3801; Fri, 12 Jan 2018 12:14:16 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 62146237DC; Fri, 12 Jan 2018 12:14:15 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0CCEFZc012630; Fri, 12 Jan 2018 12:14:15 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0CCEESM012626; Fri, 12 Jan 2018 12:14:14 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201801121214.w0CCEESM012626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 12 Jan 2018 12:14:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r327872 - in head/sys/modules: bhnd sdhci_acpi sdhci_pci sgx X-SVN-Group: head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/sys/modules: bhnd sdhci_acpi sdhci_pci sgx X-SVN-Commit-Revision: 327872 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jan 2018 12:14:16 -0000 Author: lwhsu (ports committer) Date: Fri Jan 12 12:14:14 2018 New Revision: 327872 URL: https://svnweb.freebsd.org/changeset/base/327872 Log: - Fix `make` in sys/modules Reviewed by: gonzo, landonf, br Differential Revision: https://reviews.freebsd.org/D13856 Modified: head/sys/modules/bhnd/Makefile head/sys/modules/sdhci_acpi/Makefile head/sys/modules/sdhci_pci/Makefile head/sys/modules/sgx/Makefile Modified: head/sys/modules/bhnd/Makefile ============================================================================== --- head/sys/modules/bhnd/Makefile Fri Jan 12 10:54:00 2018 (r327871) +++ head/sys/modules/bhnd/Makefile Fri Jan 12 12:14:14 2018 (r327872) @@ -18,6 +18,7 @@ SRCS+= chipc.c chipc_subr.c SRCS+= chipc_gpio.c SRCS+= gpio_if.h ofw_bus_if.h +SRCS+= opt_platform.h SRCS+= bhnd_sprom_chipc.c \ bhnd_pmu_chipc.c Modified: head/sys/modules/sdhci_acpi/Makefile ============================================================================== --- head/sys/modules/sdhci_acpi/Makefile Fri Jan 12 10:54:00 2018 (r327871) +++ head/sys/modules/sdhci_acpi/Makefile Fri Jan 12 12:14:14 2018 (r327872) @@ -4,6 +4,7 @@ KMOD= sdhci_acpi SRCS= sdhci_acpi.c sdhci.h sdhci_if.h -SRCS+= acpi_if.h device_if.h bus_if.h opt_acpi.h pci_if.h mmcbr_if.h +SRCS+= acpi_if.h device_if.h bus_if.h pci_if.h mmcbr_if.h +SRCS+= opt_acpi.h opt_mmccam.h .include Modified: head/sys/modules/sdhci_pci/Makefile ============================================================================== --- head/sys/modules/sdhci_pci/Makefile Fri Jan 12 10:54:00 2018 (r327871) +++ head/sys/modules/sdhci_pci/Makefile Fri Jan 12 12:14:14 2018 (r327872) @@ -4,5 +4,6 @@ KMOD= sdhci_pci SRCS= sdhci_pci.c sdhci.h sdhci_if.h device_if.h bus_if.h pci_if.h mmcbr_if.h +SRCS+= opt_mmccam.h .include Modified: head/sys/modules/sgx/Makefile ============================================================================== --- head/sys/modules/sgx/Makefile Fri Jan 12 10:54:00 2018 (r327871) +++ head/sys/modules/sgx/Makefile Fri Jan 12 12:14:14 2018 (r327872) @@ -4,6 +4,7 @@ KMOD= sgx SRCS= sgx.c sgxvar.h assym.s sgx_support.S +SRCS+= opt_compat.h opt_hwpmc_hooks.h opt_kstack_pages.h sgx_support.o: assym.s ${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \