diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-16 23:50:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-16 23:50:54 +0000 |
commit | cf9bca8dedb00b41c42a994ae08b91c37d11895c (patch) | |
tree | 70272e7b9e0d26608ba3e5805ab01855a9717ac7 /package/mac80211/patches/568-ath9k_fix_txop_limit.patch | |
parent | 84585b45d6ab5a71a805e45df889b01217950484 (diff) | |
download | mtk-20170518-cf9bca8dedb00b41c42a994ae08b91c37d11895c.zip mtk-20170518-cf9bca8dedb00b41c42a994ae08b91c37d11895c.tar.gz mtk-20170518-cf9bca8dedb00b41c42a994ae08b91c37d11895c.tar.bz2 |
mac80211: update to latest wireless-testing + some monitor mode fixes and some libertas driver fixes
SVN-Revision: 32760
Diffstat (limited to 'package/mac80211/patches/568-ath9k_fix_txop_limit.patch')
-rw-r--r-- | package/mac80211/patches/568-ath9k_fix_txop_limit.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/mac80211/patches/568-ath9k_fix_txop_limit.patch b/package/mac80211/patches/568-ath9k_fix_txop_limit.patch deleted file mode 100644 index 255ec29..0000000 --- a/package/mac80211/patches/568-ath9k_fix_txop_limit.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c -+++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c -@@ -1351,7 +1351,7 @@ static int ath9k_htc_conf_tx(struct ieee - qi.tqi_aifs = params->aifs; - qi.tqi_cwmin = params->cw_min; - qi.tqi_cwmax = params->cw_max; -- qi.tqi_burstTime = params->txop; -+ qi.tqi_burstTime = params->txop * 32; - - qnum = get_hw_qnum(queue, priv->hwq_map); - ---- a/drivers/net/wireless/ath/ath9k/main.c -+++ b/drivers/net/wireless/ath/ath9k/main.c -@@ -1359,7 +1359,7 @@ static int ath9k_conf_tx(struct ieee8021 - qi.tqi_aifs = params->aifs; - qi.tqi_cwmin = params->cw_min; - qi.tqi_cwmax = params->cw_max; -- qi.tqi_burstTime = params->txop; -+ qi.tqi_burstTime = params->txop * 32; - - ath_dbg(common, CONFIG, - "Configure tx [queue/halq] [%d/%d], aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |