diff options
author | sam <sam@FreeBSD.org> | 2008-10-27 16:46:50 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-10-27 16:46:50 +0000 |
commit | 94d731286108656a0c968d4d198895895a0ff1bf (patch) | |
tree | 3ce19da60bdf6db3713c58b48e39561d4276c21a /sys/dev/ral/rt2661.c | |
parent | 306c95be6d13324c52b48ea783e821dcb4926ddc (diff) | |
download | FreeBSD-src-94d731286108656a0c968d4d198895895a0ff1bf.zip FreeBSD-src-94d731286108656a0c968d4d198895895a0ff1bf.tar.gz |
o use the new association callback to notify the driver when joining a bss
in sta and adhoc modes; this should've been done forever ago as most all
drivers use this hook to set per-station transmit parameters such as for
tx rate control
o adjust drivers to remove explicit calls to the driver newassoc method
Diffstat (limited to 'sys/dev/ral/rt2661.c')
-rw-r--r-- | sys/dev/ral/rt2661.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/dev/ral/rt2661.c b/sys/dev/ral/rt2661.c index ae31d5e8..215a1b7 100644 --- a/sys/dev/ral/rt2661.c +++ b/sys/dev/ral/rt2661.c @@ -830,13 +830,8 @@ rt2661_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg) if (error != 0) return error; } - if (vap->iv_opmode != IEEE80211_M_MONITOR) { - if (vap->iv_opmode == IEEE80211_M_STA) { - /* fake a join to init the tx rate */ - rt2661_newassoc(ni, 1); - } + if (vap->iv_opmode != IEEE80211_M_MONITOR) rt2661_enable_tsf_sync(sc); - } } return error; } |