summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/531-ath9k_nf_cleanup.patch
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-07-27 21:04:54 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-07-27 21:04:54 +0000
commitf7ff2aed8b863cf6a639ff5e487307eabc8712f1 (patch)
tree52aab3eb277ba5567e6c8286b16d95acbb8a1ccc /package/mac80211/patches/531-ath9k_nf_cleanup.patch
parentbffb902a108b8cb5925546dfe48e5071d1124b8a (diff)
mac80211: update to wireless-testing 2010-07-26 + pending patches - adds a change that might fix some calibration issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22403 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/patches/531-ath9k_nf_cleanup.patch')
-rw-r--r--package/mac80211/patches/531-ath9k_nf_cleanup.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/package/mac80211/patches/531-ath9k_nf_cleanup.patch b/package/mac80211/patches/531-ath9k_nf_cleanup.patch
deleted file mode 100644
index f038559a4..000000000
--- a/package/mac80211/patches/531-ath9k_nf_cleanup.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/calib.c
-+++ b/drivers/net/wireless/ath/ath9k/calib.c
-@@ -172,26 +172,9 @@ void ath9k_hw_loadnf(struct ath_hw *ah,
- struct ath9k_nfcal_hist *h;
- unsigned i, j;
- int32_t val;
-- u8 chainmask;
-+ u8 chainmask = (ah->rxchainmask << 3) | ah->rxchainmask;
- struct ath_common *common = ath9k_hw_common(ah);
-
-- if (AR_SREV_9300_20_OR_LATER(ah))
-- chainmask = 0x3F;
-- else if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
-- chainmask = 0x9;
-- else if (AR_SREV_9280(ah) || AR_SREV_9287(ah)) {
-- if ((ah->rxchainmask & 0x2) || (ah->rxchainmask & 0x4))
-- chainmask = 0x1B;
-- else
-- chainmask = 0x09;
-- } else {
-- if (ah->rxchainmask & 0x4)
-- chainmask = 0x3F;
-- else if (ah->rxchainmask & 0x2)
-- chainmask = 0x1B;
-- else
-- chainmask = 0x09;
-- }
- h = ah->nfCalHist;
-
- for (i = 0; i < NUM_NF_READINGS; i++) {