Skip to content

Commit

Permalink
ath5k: fix txop limit handling
Browse files Browse the repository at this point in the history
Same as the recent ath9k fix

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Felix Fietkau authored and John W. Linville committed Jul 17, 2012
1 parent 7eea1a2 commit 0f245ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath5k/mac80211-ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ ath5k_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
qi.tqi_aifs = params->aifs;
qi.tqi_cw_min = params->cw_min;
qi.tqi_cw_max = params->cw_max;
qi.tqi_burst_time = params->txop;
qi.tqi_burst_time = params->txop * 32;

ATH5K_DBG(ah, ATH5K_DEBUG_ANY,
"Configure tx [queue %d], "
Expand Down

0 comments on commit 0f245ed

Please sign in to comment.