|
@@ -335,7 +335,6 @@ int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
|
|
struct ieee80211_channel *channel = conf->channel;
|
|
struct ieee80211_channel *channel = conf->channel;
|
|
const struct iwl_channel_info *ch_info;
|
|
const struct iwl_channel_info *ch_info;
|
|
int ret = 0;
|
|
int ret = 0;
|
|
- bool ht_changed[NUM_IWL_RXON_CTX] = {};
|
|
|
|
|
|
|
|
IWL_DEBUG_MAC80211(priv, "changed %#x", changed);
|
|
IWL_DEBUG_MAC80211(priv, "changed %#x", changed);
|
|
|
|
|
|
@@ -383,10 +382,8 @@ int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
|
|
|
|
|
|
for_each_context(priv, ctx) {
|
|
for_each_context(priv, ctx) {
|
|
/* Configure HT40 channels */
|
|
/* Configure HT40 channels */
|
|
- if (ctx->ht.enabled != conf_is_ht(conf)) {
|
|
|
|
|
|
+ if (ctx->ht.enabled != conf_is_ht(conf))
|
|
ctx->ht.enabled = conf_is_ht(conf);
|
|
ctx->ht.enabled = conf_is_ht(conf);
|
|
- ht_changed[ctx->ctxid] = true;
|
|
|
|
- }
|
|
|
|
|
|
|
|
if (ctx->ht.enabled) {
|
|
if (ctx->ht.enabled) {
|
|
if (conf_is_ht40_minus(conf)) {
|
|
if (conf_is_ht40_minus(conf)) {
|
|
@@ -455,8 +452,6 @@ int iwlagn_mac_config(struct ieee80211_hw *hw, u32 changed)
|
|
if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
|
|
if (!memcmp(&ctx->staging, &ctx->active, sizeof(ctx->staging)))
|
|
continue;
|
|
continue;
|
|
iwlagn_commit_rxon(priv, ctx);
|
|
iwlagn_commit_rxon(priv, ctx);
|
|
- if (ht_changed[ctx->ctxid])
|
|
|
|
- iwlagn_update_qos(priv, ctx);
|
|
|
|
}
|
|
}
|
|
out:
|
|
out:
|
|
mutex_unlock(&priv->mutex);
|
|
mutex_unlock(&priv->mutex);
|