Date: Mon, 1 Jan 2007 04:41:44 GMT From: Kip Macy <kmacy@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 112391 for review Message-ID: <200701010441.l014fi4a067070@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=112391 Change 112391 by kmacy@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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701010441.l014fi4a067070>