svn commit: r299773 - head/sys/dev/bwn

Adrian Chadd adrian at FreeBSD.org
Sat May 14 23:10:49 UTC 2016


Author: adrian
Date: Sat May 14 23:10:47 2016
New Revision: 299773
URL: https://svnweb.freebsd.org/changeset/base/299773

Log:
  [bwn] disable bgscan for now.
  
  I'll re-enable this when I've verified all of the locking / concurrency
  access to the hardware is "right".
  
  Tested:
  
  * BCM4321 (PHY-N), BCM4312 (PHY-LP)

Modified:
  head/sys/dev/bwn/if_bwn.c

Modified: head/sys/dev/bwn/if_bwn.c
==============================================================================
--- head/sys/dev/bwn/if_bwn.c	Sat May 14 23:08:34 2016	(r299772)
+++ head/sys/dev/bwn/if_bwn.c	Sat May 14 23:10:47 2016	(r299773)
@@ -646,7 +646,9 @@ bwn_attach_post(struct bwn_softc *sc)
 		| IEEE80211_C_SHSLOT		/* short slot time supported */
 		| IEEE80211_C_WME		/* WME/WMM supported */
 		| IEEE80211_C_WPA		/* capable of WPA1+WPA2 */
+#if 0
 		| IEEE80211_C_BGSCAN		/* capable of bg scanning */
+#endif
 		| IEEE80211_C_TXPMGT		/* capable of txpow mgt */
 		;
 


More information about the svn-src-head mailing list