Date: Mon, 2 May 2016 18:48:37 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298935 - in head/sys/modules/bhnd: . bcma_bhndb bhndb nvram siba_bhndb Message-ID: <201605021848.u42ImbTi098991@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605021848.u42ImbTi098991>