Commit c97470dd authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by John W. Linville

mwl8k: don't call SET_AID if we're not associated

Signed-off-by: default avatarLennert Buytenhek <buytenh@marvell.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 9189c100
...@@ -3261,9 +3261,9 @@ mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif, ...@@ -3261,9 +3261,9 @@ mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
/* /*
* Get the AP's legacy and MCS rates. * Get the AP's legacy and MCS rates.
*/ */
ap_legacy_rates = 0;
if (vif->bss_conf.assoc) { if (vif->bss_conf.assoc) {
struct ieee80211_sta *ap; struct ieee80211_sta *ap;
rcu_read_lock(); rcu_read_lock();
ap = ieee80211_find_sta(vif, vif->bss_conf.bssid); ap = ieee80211_find_sta(vif, vif->bss_conf.bssid);
...@@ -3301,8 +3301,9 @@ mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif, ...@@ -3301,8 +3301,9 @@ mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
goto out; goto out;
} }
if (((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) || if (vif->bss_conf.assoc &&
(changed & (BSS_CHANGED_ERP_CTS_PROT | BSS_CHANGED_HT))) { (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT |
BSS_CHANGED_HT))) {
rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates); rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates);
if (rc) if (rc)
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment