From owner-svn-src-head@freebsd.org Thu May 19 04:45:52 2016 Return-Path: Delivered-To: svn-src-head@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 69F92B41A78; Thu, 19 May 2016 04:45:52 +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 467731115; Thu, 19 May 2016 04:45:52 +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 u4J4jpec072022; Thu, 19 May 2016 04:45:51 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4J4joCU072016; Thu, 19 May 2016 04:45:50 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201605190445.u4J4joCU072016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Thu, 19 May 2016 04:45:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300190 - head/sys/gnu/dev/bwn/phy_n X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2016 04:45:52 -0000 Author: adrian Date: Thu May 19 04:45:50 2016 New Revision: 300190 URL: https://svnweb.freebsd.org/changeset/base/300190 Log: [bwn] add opt_wlan.h and opt_bwn.h to each of the phy_n source files. Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_core.c head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.c head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.c head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2055.c head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2056.c head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2057.c Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_core.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_core.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_core.c Thu May 19 04:45:50 2016 (r300190) @@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$"); * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h" + #include #include #include Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.c Thu May 19 04:45:50 2016 (r300190) @@ -29,6 +29,8 @@ __FBSDID("$FreeBSD$"); /* * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h" #include #include Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.c Thu May 19 04:45:50 2016 (r300190) @@ -30,6 +30,9 @@ __FBSDID("$FreeBSD$"); * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h" + #include #include #include Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2055.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2055.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2055.c Thu May 19 04:45:50 2016 (r300190) @@ -30,6 +30,9 @@ __FBSDID("$FreeBSD$"); * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h" + #include #include #include Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2056.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2056.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2056.c Thu May 19 04:45:50 2016 (r300190) @@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$"); * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h" + #include #include #include Modified: head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2057.c ============================================================================== --- head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2057.c Thu May 19 04:29:25 2016 (r300189) +++ head/sys/gnu/dev/bwn/phy_n/if_bwn_radio_2057.c Thu May 19 04:45:50 2016 (r300190) @@ -31,6 +31,9 @@ __FBSDID("$FreeBSD$"); * The Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" +#include "opt_bwn.h' + #include #include #include