svn commit: r314535 - in head/sys/modules: bytgpio intelspi

Oleksandr Tymoshenko gonzo at FreeBSD.org
Thu Mar 2 03:19:40 UTC 2017


Author: gonzo
Date: Thu Mar  2 03:19:39 2017
New Revision: 314535
URL: https://svnweb.freebsd.org/changeset/base/314535

Log:
  [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)
  MFC after:	1 day

Modified:
  head/sys/modules/bytgpio/Makefile
  head/sys/modules/intelspi/Makefile

Modified: head/sys/modules/bytgpio/Makefile
==============================================================================
--- head/sys/modules/bytgpio/Makefile	Thu Mar  2 02:10:59 2017	(r314534)
+++ head/sys/modules/bytgpio/Makefile	Thu Mar  2 03:19:39 2017	(r314535)
@@ -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: head/sys/modules/intelspi/Makefile
==============================================================================
--- head/sys/modules/intelspi/Makefile	Thu Mar  2 02:10:59 2017	(r314534)
+++ head/sys/modules/intelspi/Makefile	Thu Mar  2 03:19:39 2017	(r314535)
@@ -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-all mailing list