summaryrefslogtreecommitdiffstats
path: root/net/mac80211/tx.c
diff options
context:
space:
mode:
authorJohannes Berg2012-03-27 14:18:37 +0200
committerJohn W. Linville2012-04-10 20:54:06 +0200
commit4875d30df594eb47746b16073067e316968edd53 (patch)
treef26e9d3eb9580959c56609324f372686e7960f97 /net/mac80211/tx.c
parentmac80211: fix mesh TX coding style (diff)
downloadkernel-qcow2-linux-4875d30df594eb47746b16073067e316968edd53.tar.gz
kernel-qcow2-linux-4875d30df594eb47746b16073067e316968edd53.tar.xz
kernel-qcow2-linux-4875d30df594eb47746b16073067e316968edd53.zip
mac80211: clean up uAPSD TX code
Clean up the code formatting and also replace the constant 0 by IEEE80211_AC_VO. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r--net/mac80211/tx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 82389adbe582..b35d319cea8f 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -230,9 +230,9 @@ ieee80211_tx_h_dynamic_ps(struct ieee80211_tx_data *tx)
* changed via debugfs, user needs to reassociate manually to have
* everything in sync.
*/
- if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED)
- && (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO)
- && skb_get_queue_mapping(tx->skb) == 0)
+ if ((ifmgd->flags & IEEE80211_STA_UAPSD_ENABLED) &&
+ (ifmgd->uapsd_queues & IEEE80211_WMM_IE_STA_QOSINFO_AC_VO) &&
+ skb_get_queue_mapping(tx->skb) == IEEE80211_AC_VO)
return TX_CONTINUE;
if (local->hw.conf.flags & IEEE80211_CONF_PS) {