aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2012-03-28 05:04:29 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-04-10 14:56:10 -0400
commit32c5057b22a60b23353dda93c57e475856ca286c (patch)
tree68a80dd3fb3a93f0eacf1566c3dd60877efe6cf2 /net/mac80211/mlme.c
parent4644ae89033872a62b4fea6ca96b958e115efdc0 (diff)
mac80211: use IEEE80211_NUM_ACS
When comparing hw->queues to determine if the device is QoS capable, use IEEE80211_NUM_ACS instead of just 4. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 4974f998c7dd..93d484c8a0b8 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -1134,7 +1134,7 @@ static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
1134 if (!local->ops->conf_tx) 1134 if (!local->ops->conf_tx)
1135 return; 1135 return;
1136 1136
1137 if (local->hw.queues < 4) 1137 if (local->hw.queues < IEEE80211_NUM_ACS)
1138 return; 1138 return;
1139 1139
1140 if (!wmm_param) 1140 if (!wmm_param)
@@ -3312,7 +3312,7 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3312 /* Also disable HT if we don't support it or the AP doesn't use WMM */ 3312 /* Also disable HT if we don't support it or the AP doesn't use WMM */
3313 sband = local->hw.wiphy->bands[req->bss->channel->band]; 3313 sband = local->hw.wiphy->bands[req->bss->channel->band];
3314 if (!sband->ht_cap.ht_supported || 3314 if (!sband->ht_cap.ht_supported ||
3315 local->hw.queues < 4 || !bss->wmm_used) 3315 local->hw.queues < IEEE80211_NUM_ACS || !bss->wmm_used)
3316 ifmgd->flags |= IEEE80211_STA_DISABLE_11N; 3316 ifmgd->flags |= IEEE80211_STA_DISABLE_11N;
3317 3317
3318 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa)); 3318 memcpy(&ifmgd->ht_capa, &req->ht_capa, sizeof(ifmgd->ht_capa));
@@ -3335,7 +3335,8 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
3335 ifmgd->ap_smps = ifmgd->req_smps; 3335 ifmgd->ap_smps = ifmgd->req_smps;
3336 3336
3337 assoc_data->capability = req->bss->capability; 3337 assoc_data->capability = req->bss->capability;
3338 assoc_data->wmm = bss->wmm_used && (local->hw.queues >= 4); 3338 assoc_data->wmm = bss->wmm_used &&
3339 (local->hw.queues >= IEEE80211_NUM_ACS);
3339 assoc_data->supp_rates = bss->supp_rates; 3340 assoc_data->supp_rates = bss->supp_rates;
3340 assoc_data->supp_rates_len = bss->supp_rates_len; 3341 assoc_data->supp_rates_len = bss->supp_rates_len;
3341 assoc_data->ht_operation_ie = 3342 assoc_data->ht_operation_ie =