1
0
Fork 0

ath9k: Send AUTHORIZED event only for station mode

ATH_CHANCTX_EVENT_AUTHORIZED is required to trigger
the MCC scheduler when a station interface becomes
authorized. But, since the driver gets station state
notifications when the current operating mode is AP
too, make sure that we send ATH_CHANCTX_EVENT_AUTHORIZED
only when the interface is in station mode.

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
hifive-unleashed-5.1
Sujith Manoharan 2014-10-17 07:40:19 +05:30 committed by John W. Linville
parent e2d389b5aa
commit 91e6ceb354
1 changed files with 6 additions and 4 deletions

View File

@ -1590,10 +1590,12 @@ static int ath9k_sta_state(struct ieee80211_hw *hw,
}
if (ath9k_is_chanctx_enabled()) {
if (old_state == IEEE80211_STA_ASSOC &&
new_state == IEEE80211_STA_AUTHORIZED)
ath_chanctx_event(sc, vif,
ATH_CHANCTX_EVENT_AUTHORIZED);
if (vif->type == NL80211_IFTYPE_STATION) {
if (old_state == IEEE80211_STA_ASSOC &&
new_state == IEEE80211_STA_AUTHORIZED)
ath_chanctx_event(sc, vif,
ATH_CHANCTX_EVENT_AUTHORIZED);
}
}
return ret;