svn commit: r314569 - in stable/11/sys/modules: bytgpio intelspi
Oleksandr Tymoshenko
gonzo at FreeBSD.org
Thu Mar 2 22:43:01 UTC 2017
Author: gonzo
Date: Thu Mar 2 22:42:59 2017
New Revision: 314569
URL: https://svnweb.freebsd.org/changeset/base/314569
Log:
MFC r314535:
[intelspi][bytgio] Fix buildworld with MODULES_WITH_WORLD set
Add opt_platform.h and opt_acpi.h to the dependencies so modules can be
built as a part of buildworld when MODULES_WITH_WORLD is set
Reported by: Andre Albsmeier (for 11-stable)
Modified:
stable/11/sys/modules/bytgpio/Makefile
stable/11/sys/modules/intelspi/Makefile
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/modules/bytgpio/Makefile
==============================================================================
--- stable/11/sys/modules/bytgpio/Makefile Thu Mar 2 22:17:53 2017 (r314568)
+++ stable/11/sys/modules/bytgpio/Makefile Thu Mar 2 22:42:59 2017 (r314569)
@@ -3,6 +3,6 @@
.PATH: ${.CURDIR}/../../dev/gpio
KMOD= bytgpio
SRCS= bytgpio.c
-SRCS+= acpi_if.h device_if.h bus_if.h gpio_if.h
+SRCS+= acpi_if.h device_if.h bus_if.h gpio_if.h opt_acpi.h opt_platform.h
.include <bsd.kmod.mk>
Modified: stable/11/sys/modules/intelspi/Makefile
==============================================================================
--- stable/11/sys/modules/intelspi/Makefile Thu Mar 2 22:17:53 2017 (r314568)
+++ stable/11/sys/modules/intelspi/Makefile Thu Mar 2 22:42:59 2017 (r314569)
@@ -3,6 +3,6 @@
.PATH: ${.CURDIR}/../../dev/intel
KMOD= intelspi
SRCS= spi.c
-SRCS+= acpi_if.h device_if.h bus_if.h spibus_if.h
+SRCS+= acpi_if.h device_if.h bus_if.h opt_acpi.h spibus_if.h
.include <bsd.kmod.mk>
More information about the svn-src-stable
mailing list