From owner-svn-src-all@freebsd.org Mon May 2 21:01:10 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A256B2A0AF; Mon, 2 May 2016 21:01:10 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C1F411AC; Mon, 2 May 2016 21:01:09 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u42L19SS039784; Mon, 2 May 2016 21:01:09 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u42L181w039771; Mon, 2 May 2016 21:01:08 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201605022101.u42L181w039771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Mon, 2 May 2016 21:01:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298943 - in head/sys/dev/bhnd: . bcma cores/chipc cores/pci siba X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2016 21:01:10 -0000 Author: adrian Date: Mon May 2 21:01:08 2016 New Revision: 298943 URL: https://svnweb.freebsd.org/changeset/base/298943 Log: [bhnd] add module dependencies. Submitted by: Landon Fuller Differential Revision: https://reviews.freebsd.org/D6179 Modified: head/sys/dev/bhnd/bcma/bcma_bhndb.c head/sys/dev/bhnd/bhnd_subr.c head/sys/dev/bhnd/cores/chipc/chipc.c head/sys/dev/bhnd/cores/pci/bhnd_pci.c head/sys/dev/bhnd/siba/siba_bhndb.c Modified: head/sys/dev/bhnd/bcma/bcma_bhndb.c ============================================================================== --- head/sys/dev/bhnd/bcma/bcma_bhndb.c Mon May 2 20:56:11 2016 (r298942) +++ head/sys/dev/bhnd/bcma/bcma_bhndb.c Mon May 2 21:01:08 2016 (r298943) @@ -180,4 +180,5 @@ DRIVER_MODULE(bcma_bhndb, bhndb, bcma_bh MODULE_VERSION(bcma_bhndb, 1); MODULE_DEPEND(bcma_bhndb, bcma, 1, 1, 1); +MODULE_DEPEND(bcma_bhndb, bhnd, 1, 1, 1); MODULE_DEPEND(bcma_bhndb, bhndb, 1, 1, 1); Modified: head/sys/dev/bhnd/bhnd_subr.c ============================================================================== --- head/sys/dev/bhnd/bhnd_subr.c Mon May 2 20:56:11 2016 (r298942) +++ head/sys/dev/bhnd/bhnd_subr.c Mon May 2 21:01:08 2016 (r298943) @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include +#include #include #include @@ -889,4 +890,4 @@ bhnd_bus_generic_deactivate_resource(dev child, type, rid, r)); return (EINVAL); -}; \ No newline at end of file +}; Modified: head/sys/dev/bhnd/cores/chipc/chipc.c ============================================================================== --- head/sys/dev/bhnd/cores/chipc/chipc.c Mon May 2 20:56:11 2016 (r298942) +++ head/sys/dev/bhnd/cores/chipc/chipc.c Mon May 2 21:01:08 2016 (r298943) @@ -306,4 +306,5 @@ static device_method_t chipc_methods[] = DEFINE_CLASS_0(bhnd_chipc, chipc_driver, chipc_methods, sizeof(struct chipc_softc)); DRIVER_MODULE(bhnd_chipc, bhnd, chipc_driver, bhnd_chipc_devclass, 0, 0); +MODULE_DEPEND(bhnd_chipc, bhnd, 1, 1, 1); MODULE_VERSION(bhnd_chipc, 1); Modified: head/sys/dev/bhnd/cores/pci/bhnd_pci.c ============================================================================== --- head/sys/dev/bhnd/cores/pci/bhnd_pci.c Mon May 2 20:56:11 2016 (r298942) +++ head/sys/dev/bhnd/cores/pci/bhnd_pci.c Mon May 2 21:01:08 2016 (r298943) @@ -546,3 +546,4 @@ DEFINE_CLASS_0(bhnd_pci, bhnd_pci_driver MODULE_VERSION(bhnd_pci, 1); MODULE_DEPEND(bhnd_pci, pci, 1, 1, 1); +MODULE_DEPEND(bhnd_pci, bhnd, 1, 1, 1); Modified: head/sys/dev/bhnd/siba/siba_bhndb.c ============================================================================== --- head/sys/dev/bhnd/siba/siba_bhndb.c Mon May 2 20:56:11 2016 (r298942) +++ head/sys/dev/bhnd/siba/siba_bhndb.c Mon May 2 21:01:08 2016 (r298943) @@ -179,4 +179,5 @@ DRIVER_MODULE(siba_bhndb, bhndb, siba_bh MODULE_VERSION(siba_bhndb, 1); MODULE_DEPEND(siba_bhndb, siba, 1, 1, 1); -MODULE_DEPEND(siba_bhndb, bhndb, 1, 1, 1); \ No newline at end of file +MODULE_DEPEND(siba_bhndb, bhnd, 1, 1, 1); +MODULE_DEPEND(siba_bhndb, bhndb, 1, 1, 1);