svn commit: r298935 - in head/sys/modules/bhnd: . bcma_bhndb bhndb nvram siba_bhndb

Adrian Chadd adrian at FreeBSD.org
Mon May 2 18:48:39 UTC 2016


Author: adrian
Date: Mon May  2 18:48:37 2016
New Revision: 298935
URL: https://svnweb.freebsd.org/changeset/base/298935

Log:
  [bhnd] add missing bus interface SRC bits, required after the last source import.

Modified:
  head/sys/modules/bhnd/Makefile
  head/sys/modules/bhnd/bcma_bhndb/Makefile
  head/sys/modules/bhnd/bhndb/Makefile
  head/sys/modules/bhnd/nvram/Makefile
  head/sys/modules/bhnd/siba_bhndb/Makefile

Modified: head/sys/modules/bhnd/Makefile
==============================================================================
--- head/sys/modules/bhnd/Makefile	Mon May  2 18:23:48 2016	(r298934)
+++ head/sys/modules/bhnd/Makefile	Mon May  2 18:48:37 2016	(r298935)
@@ -4,7 +4,7 @@
 
 KMOD=	bhnd
 SRCS=	bhnd.c bhnd_subr.c \
-	bhnd_bus_if.c bhnd_bus_if.h
+	bhnd_bus_if.c bhnd_bus_if.h bhnd_nvram_if.h
 
 SRCS+=	device_if.h bus_if.h
 

Modified: head/sys/modules/bhnd/bcma_bhndb/Makefile
==============================================================================
--- head/sys/modules/bhnd/bcma_bhndb/Makefile	Mon May  2 18:23:48 2016	(r298934)
+++ head/sys/modules/bhnd/bcma_bhndb/Makefile	Mon May  2 18:48:37 2016	(r298935)
@@ -5,7 +5,7 @@
 KMOD=	bcma_bhndb
 SRCS=	bcma_bhndb.c
 
-SRCS+=	bhnd_bus_if.h bhndb_if.h
+SRCS+=	bhnd_bus_if.h bhndb_bus_if.h bhndb_if.h
 SRCS+=	device_if.h bus_if.h
 
 .include <bsd.kmod.mk>

Modified: head/sys/modules/bhnd/bhndb/Makefile
==============================================================================
--- head/sys/modules/bhnd/bhndb/Makefile	Mon May  2 18:23:48 2016	(r298934)
+++ head/sys/modules/bhnd/bhndb/Makefile	Mon May  2 18:48:37 2016	(r298935)
@@ -5,7 +5,8 @@
 KMOD=	bhndb
 SRCS=	bhndb.c bhndb_subr.c bhndb_hwdata.c \
 	bhndb_bus_if.c bhndb_bus_if.h \
-	bhndb_if.c bhndb_if.h
+	bhndb_if.c bhndb_if.h \
+	bhnd_bus_if.h
 
 SRCS+=	device_if.h bus_if.h
 

Modified: head/sys/modules/bhnd/nvram/Makefile
==============================================================================
--- head/sys/modules/bhnd/nvram/Makefile	Mon May  2 18:23:48 2016	(r298934)
+++ head/sys/modules/bhnd/nvram/Makefile	Mon May  2 18:48:37 2016	(r298935)
@@ -3,7 +3,7 @@
 .PATH: ${.CURDIR}/../../../dev/bhnd/nvram
 
 KMOD=	bhnd_nvram
-SRCS=	bhnd_nvram_if.c bhnd_nvram_if.h
+SRCS=	bhnd_nvram_if.c bhnd_nvram_if.h bhnd_bus_if.h
 
 SRCS+=	device_if.h bus_if.h
 

Modified: head/sys/modules/bhnd/siba_bhndb/Makefile
==============================================================================
--- head/sys/modules/bhnd/siba_bhndb/Makefile	Mon May  2 18:23:48 2016	(r298934)
+++ head/sys/modules/bhnd/siba_bhndb/Makefile	Mon May  2 18:48:37 2016	(r298935)
@@ -5,7 +5,7 @@
 KMOD=	siba_bhndb
 SRCS=	siba_bhndb.c
 
-SRCS+=	bhnd_bus_if.h bhndb_if.h
+SRCS+=	bhnd_bus_if.h bhndb_bus_if.h bhndb_if.h
 SRCS+=	device_if.h bus_if.h
 
 .include <bsd.kmod.mk>


More information about the svn-src-head mailing list