PERFORCE change 112391 for review

Kip Macy kmacy at FreeBSD.org
Sun Dec 31 20:41:45 PST 2006


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

Change 112391 by kmacy at kmacy_serendipity:sam_wifi on 2007/01/01 04:41:28

	This removes calls to functions that are no longer part
	of the 802.11 stack to get GENERIC to compile - 
	not tested. I'm not sure how widely used awi is.

Affected files ...

.. //depot/projects/wifi/sys/dev/awi/awi.c#15 edit

Differences ...

==== //depot/projects/wifi/sys/dev/awi/awi.c#15 (text+ko) ====

@@ -525,9 +525,10 @@
 		if (status & AWI_INT_CMD)
 			awi_cmd_done(sc);
 		if (status & AWI_INT_SCAN_CMPLT) {
+		  /* XXX revisit scanning */
 			if (sc->sc_ic.ic_state == IEEE80211_S_SCAN &&
 			    sc->sc_substate == AWI_ST_NONE)
-				ieee80211_next_scan(&sc->sc_ic);
+			  ;
 		}
 	}
 	sc->sc_cansleep = ocansleep;
@@ -931,7 +932,6 @@
 			ifp->if_timer = 1;
 	}
 	/* TODO: rate control */
-	ieee80211_watchdog(&sc->sc_ic);
   out:
 	sc->sc_cansleep = ocansleep;
 }
@@ -1946,7 +1946,7 @@
 			case IEEE80211_S_AUTH:
 			case IEEE80211_S_ASSOC:
 			case IEEE80211_S_INIT:
-				ieee80211_begin_scan(ic, 0);
+			  /* XXX revisit scanning */;
 				break;
 			case IEEE80211_S_SCAN:
 				/* scan next */


More information about the p4-projects mailing list