PERFORCE change 69405 for review
Sam Leffler
sam at FreeBSD.org
Thu Jan 20 17:35:05 PST 2005
http://perforce.freebsd.org/chv.cgi?CH=69405
Change 69405 by sam at sam_ebb on 2005/01/21 01:34:28
use net80211 macros to convert ms->TU's
Affected files ...
.. //depot/projects/wifi/sys/dev/ath/if_ath.c#72 edit
Differences ...
==== //depot/projects/wifi/sys/dev/ath/if_ath.c#72 (text+ko) ====
@@ -2335,7 +2335,6 @@
static void
ath_beacon_config(struct ath_softc *sc)
{
-#define MS_TO_TU(x) (((x) * 1000) / 1024)
struct ath_hal *ah = sc->sc_ah;
struct ieee80211com *ic = &sc->sc_ic;
struct ieee80211_node *ni = ic->ic_bss;
@@ -2389,7 +2388,8 @@
*
* XXX fixed at 100ms
*/
- bs.bs_sleepduration = roundup(MS_TO_TU(100), bs.bs_intval);
+ bs.bs_sleepduration =
+ roundup(IEEE80211_MS_TO_TU(100), bs.bs_intval);
if (bs.bs_sleepduration > bs.bs_dtimperiod)
bs.bs_sleepduration = roundup(bs.bs_sleepduration, bs.bs_dtimperiod);
@@ -2444,7 +2444,6 @@
if (ic->ic_opmode == IEEE80211_M_IBSS && sc->sc_hasveol)
ath_beacon_proc(sc, 0);
}
-#undef MS_TO_TU
}
static void
More information about the p4-projects
mailing list