Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Mar 2017 22:42:59 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r314569 - in stable/11/sys/modules: bytgpio intelspi
Message-ID:  <201703022242.v22MgxIP026122@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703022242.v22MgxIP026122>