PERFORCE change 87240 for review

Sam Leffler sam at FreeBSD.org
Sat Nov 26 01:56:25 GMT 2005


http://perforce.freebsd.org/chv.cgi?CH=87240

Change 87240 by sam at sam_ebb on 2005/11/26 01:55:31

	mark bg scan capability

Affected files ...

.. //depot/projects/wifi/sys/dev/ral/if_ral.c#9 edit

Differences ...

==== //depot/projects/wifi/sys/dev/ral/if_ral.c#9 (text+ko) ====

@@ -415,9 +415,17 @@
 	ic->ic_state = IEEE80211_S_INIT;
 
 	/* set device capabilities */
-	ic->ic_caps = IEEE80211_C_MONITOR | IEEE80211_C_IBSS |
-	    IEEE80211_C_HOSTAP | IEEE80211_C_SHPREAMBLE | IEEE80211_C_SHSLOT |
-	    IEEE80211_C_PMGT | IEEE80211_C_TXPMGT | IEEE80211_C_WPA;
+	ic->ic_caps =
+		  IEEE80211_C_IBSS		/* ibss, nee adhoc, mode */
+		| IEEE80211_C_HOSTAP		/* hostap mode */
+		| IEEE80211_C_MONITOR		/* monitor mode */
+		| IEEE80211_C_SHPREAMBLE	/* short preamble supported */
+		| IEEE80211_C_SHSLOT		/* short slot time supported */
+		| IEEE80211_C_PMGT
+		| IEEE80211_C_TXPMGT
+		| IEEE80211_C_BGSCAN		/* capable of bg scanning */
+		| IEEE80211_C_WPA		/* capable of WPA1+WPA2 */
+		;
 
 	if (sc->rf_rev == RAL_RF_5222) {
 		/* set supported .11a rates */


More information about the p4-projects mailing list