aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-10-30 15:17:56 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-10-30 15:17:56 +0000
commitd2dc5092764d32155c95b8358903d1a88de47231 (patch)
treee7407a762a23a909064b6e4bbb06b2a775a25e00 /package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch
parent27d27caaf4f255a7d99ddeb87c5bd1f2c44477ce (diff)
downloadmaster-187ad058-d2dc5092764d32155c95b8358903d1a88de47231.tar.gz
master-187ad058-d2dc5092764d32155c95b8358903d1a88de47231.tar.bz2
master-187ad058-d2dc5092764d32155c95b8358903d1a88de47231.zip
mac80211: update to wireless-testing 2015-10-26
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47286 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch')
-rw-r--r--package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch b/package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch
deleted file mode 100644
index 1a3a9d4ebb..0000000000
--- a/package/kernel/mac80211/patches/308-ath9k-Fix-NF-CCA-limits-for-AR9287-and-AR9227.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
-Date: Wed, 22 Jul 2015 10:42:43 +0200
-Subject: [PATCH] ath9k: Fix NF CCA limits for AR9287 and AR9227
-
-The FreeBSD driver [0] uses the same 2G values as for the AR9280 chips.
-Using the same values in ath9k results in much better throughput for me.
-
-Before this patch I had a huge amount of packet loss (sometimes up to
-40%) and the max transfer speed was somewhere around 5Mbit/s. With this
-patch applied I have zero packet loss and ten times the throughput.
-My device uses a AR9227 which is the PCI variant of the AR9287.
-
-[0] http://bxr.su/FreeBSD/sys/dev/ath/ath_hal/ar9002/ar9287.h
-
-Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
----
-
---- a/drivers/net/wireless/ath/ath9k/ar9002_phy.h
-+++ b/drivers/net/wireless/ath/ath9k/ar9002_phy.h
-@@ -610,8 +610,8 @@
- #define AR_PHY_CCA_MIN_GOOD_VAL_9271_2GHZ -127
- #define AR_PHY_CCA_MAX_GOOD_VAL_9271_2GHZ -116
-
--#define AR_PHY_CCA_NOM_VAL_9287_2GHZ -120
-+#define AR_PHY_CCA_NOM_VAL_9287_2GHZ -112
- #define AR_PHY_CCA_MIN_GOOD_VAL_9287_2GHZ -127
--#define AR_PHY_CCA_MAX_GOOD_VAL_9287_2GHZ -110
-+#define AR_PHY_CCA_MAX_GOOD_VAL_9287_2GHZ -97
-
- #endif