From owner-svn-src-all@freebsd.org Mon May 2 18:48:39 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 52F76B2A4E5; Mon, 2 May 2016 18:48:39 +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 147D41336; Mon, 2 May 2016 18:48:39 +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 u42ImcsK098996; Mon, 2 May 2016 18:48:38 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u42ImbTi098991; Mon, 2 May 2016 18:48:37 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201605021848.u42ImbTi098991@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 18:48:37 +0000 (UTC) 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 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 18:48:39 -0000 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 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