diff options
author | adrian <adrian@FreeBSD.org> | 2016-05-02 18:48:37 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2016-05-02 18:48:37 +0000 |
commit | 287935aef430e781437ba491aa9cc67bfc15c8ab (patch) | |
tree | e440ebac3240263f9341e58977a528b38701715e /sys/modules/bhnd | |
parent | f31121f9b6f619081955872bd16f6598d0418fa0 (diff) | |
download | FreeBSD-src-287935aef430e781437ba491aa9cc67bfc15c8ab.zip FreeBSD-src-287935aef430e781437ba491aa9cc67bfc15c8ab.tar.gz |
[bhnd] add missing bus interface SRC bits, required after the last source import.
Diffstat (limited to 'sys/modules/bhnd')
-rw-r--r-- | sys/modules/bhnd/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/bhnd/bcma_bhndb/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/bhnd/bhndb/Makefile | 3 | ||||
-rw-r--r-- | sys/modules/bhnd/nvram/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/bhnd/siba_bhndb/Makefile | 2 |
5 files changed, 6 insertions, 5 deletions
diff --git a/sys/modules/bhnd/Makefile b/sys/modules/bhnd/Makefile index c2456a0..862b56d 100644 --- a/sys/modules/bhnd/Makefile +++ b/sys/modules/bhnd/Makefile @@ -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 diff --git a/sys/modules/bhnd/bcma_bhndb/Makefile b/sys/modules/bhnd/bcma_bhndb/Makefile index 5896703..372a7ed 100644 --- a/sys/modules/bhnd/bcma_bhndb/Makefile +++ b/sys/modules/bhnd/bcma_bhndb/Makefile @@ -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> diff --git a/sys/modules/bhnd/bhndb/Makefile b/sys/modules/bhnd/bhndb/Makefile index a414937..06822de 100644 --- a/sys/modules/bhnd/bhndb/Makefile +++ b/sys/modules/bhnd/bhndb/Makefile @@ -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 diff --git a/sys/modules/bhnd/nvram/Makefile b/sys/modules/bhnd/nvram/Makefile index f85502c..6c6d203 100644 --- a/sys/modules/bhnd/nvram/Makefile +++ b/sys/modules/bhnd/nvram/Makefile @@ -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 diff --git a/sys/modules/bhnd/siba_bhndb/Makefile b/sys/modules/bhnd/siba_bhndb/Makefile index 2dbef19..ba46a7f 100644 --- a/sys/modules/bhnd/siba_bhndb/Makefile +++ b/sys/modules/bhnd/siba_bhndb/Makefile @@ -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> |