diff options
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r-- | net/mac80211/cfg.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index dc12e9466ffd..8286df5822d5 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -1128,6 +1128,13 @@ static int ieee80211_set_txq_params(struct wiphy *wiphy, | |||
1128 | p.cw_max = params->cwmax; | 1128 | p.cw_max = params->cwmax; |
1129 | p.cw_min = params->cwmin; | 1129 | p.cw_min = params->cwmin; |
1130 | p.txop = params->txop; | 1130 | p.txop = params->txop; |
1131 | |||
1132 | /* | ||
1133 | * Setting tx queue params disables u-apsd because it's only | ||
1134 | * called in master mode. | ||
1135 | */ | ||
1136 | p.uapsd = false; | ||
1137 | |||
1131 | if (drv_conf_tx(local, params->queue, &p)) { | 1138 | if (drv_conf_tx(local, params->queue, &p)) { |
1132 | printk(KERN_DEBUG "%s: failed to set TX queue " | 1139 | printk(KERN_DEBUG "%s: failed to set TX queue " |
1133 | "parameters for queue %d\n", | 1140 | "parameters for queue %d\n", |