Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Nov 2005 01:56:23 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 87240 for review
Message-ID:  <200511260156.jAQ1uNnD024054@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=87240

Change 87240 by sam@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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511260156.jAQ1uNnD024054>