From owner-svn-src-all@FreeBSD.ORG Sat May 12 15:11:53 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2A58106566B; Sat, 12 May 2012 15:11:53 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B55F78FC15; Sat, 12 May 2012 15:11:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4CFBrJW039433; Sat, 12 May 2012 15:11:53 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4CFBr09039427; Sat, 12 May 2012 15:11:53 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201205121511.q4CFBr09039427@svn.freebsd.org> From: Adrian Chadd Date: Sat, 12 May 2012 15:11:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r235338 - head/sys/dev/bwi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 12 May 2012 15:11:54 -0000 Author: adrian Date: Sat May 12 15:11:53 2012 New Revision: 235338 URL: http://svn.freebsd.org/changeset/base/235338 Log: Add opt_wlan.h includes, so IEEE80211_* configuration changes are correctly picked up. Noticed by: Justin Hibbits, whilst debugging @ BSDCan Modified: head/sys/dev/bwi/bwimac.c head/sys/dev/bwi/bwiphy.c head/sys/dev/bwi/bwirf.c head/sys/dev/bwi/if_bwi.c head/sys/dev/bwi/if_bwi_pci.c Modified: head/sys/dev/bwi/bwimac.c ============================================================================== --- head/sys/dev/bwi/bwimac.c Sat May 12 15:08:22 2012 (r235337) +++ head/sys/dev/bwi/bwimac.c Sat May 12 15:11:53 2012 (r235338) @@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_bwi.h" +#include "opt_wlan.h" #include #include Modified: head/sys/dev/bwi/bwiphy.c ============================================================================== --- head/sys/dev/bwi/bwiphy.c Sat May 12 15:08:22 2012 (r235337) +++ head/sys/dev/bwi/bwiphy.c Sat May 12 15:11:53 2012 (r235338) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" +#include "opt_wlan.h" #include #include Modified: head/sys/dev/bwi/bwirf.c ============================================================================== --- head/sys/dev/bwi/bwirf.c Sat May 12 15:08:22 2012 (r235337) +++ head/sys/dev/bwi/bwirf.c Sat May 12 15:11:53 2012 (r235338) @@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_bwi.h" +#include "opt_wlan.h" #include #include Modified: head/sys/dev/bwi/if_bwi.c ============================================================================== --- head/sys/dev/bwi/if_bwi.c Sat May 12 15:08:22 2012 (r235337) +++ head/sys/dev/bwi/if_bwi.c Sat May 12 15:11:53 2012 (r235338) @@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include "opt_inet.h" #include "opt_bwi.h" +#include "opt_wlan.h" #include #include Modified: head/sys/dev/bwi/if_bwi_pci.c ============================================================================== --- head/sys/dev/bwi/if_bwi_pci.c Sat May 12 15:08:22 2012 (r235337) +++ head/sys/dev/bwi/if_bwi_pci.c Sat May 12 15:11:53 2012 (r235338) @@ -34,6 +34,8 @@ __FBSDID("$FreeBSD$"); * PCI/Cardbus front-end for the Broadcom Wireless LAN controller driver. */ +#include "opt_wlan.h" + #include #include #include