aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-25 18:21:32 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-04-25 18:21:32 +0000
commitcadebdf13b11d4df2bbe86008d9bdd2dca09ae45 (patch)
tree5c82e92a2dff5784122d4935a249e1990096966e /package
parentb53cc9e3d902afb641b20c812d53aaede84421d3 (diff)
downloadmaster-187ad058-cadebdf13b11d4df2bbe86008d9bdd2dca09ae45.tar.gz
master-187ad058-cadebdf13b11d4df2bbe86008d9bdd2dca09ae45.tar.bz2
master-187ad058-cadebdf13b11d4df2bbe86008d9bdd2dca09ae45.zip
ath9k: remove the signal strength fix, it causes a lot of confusion and seems to be just as inaccurate as the original version of the code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26753 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/patches/530-ath9k_fix_reported_signal_strength.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/package/mac80211/patches/530-ath9k_fix_reported_signal_strength.patch b/package/mac80211/patches/530-ath9k_fix_reported_signal_strength.patch
deleted file mode 100644
index 9e188fc627..0000000000
--- a/package/mac80211/patches/530-ath9k_fix_reported_signal_strength.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/recv.c
-+++ b/drivers/net/wireless/ath/ath9k/recv.c
-@@ -956,6 +956,9 @@ static int ath9k_rx_skb_preprocess(struc
- struct ieee80211_rx_status *rx_status,
- bool *decrypt_error)
- {
-+ struct ath_hw *ah = common->ah;
-+ int noise;
-+
- memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
-
- /*
-@@ -976,7 +979,13 @@ static int ath9k_rx_skb_preprocess(struc
-
- rx_status->band = hw->conf.channel->band;
- rx_status->freq = hw->conf.channel->center_freq;
-- rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
-+
-+ if (ah->curchan && ah->curchan->noisefloor)
-+ noise = ah->curchan->noisefloor;
-+ else
-+ noise = ATH_DEFAULT_NOISE_FLOOR;
-+
-+ rx_status->signal = noise + rx_stats->rs_rssi;
- rx_status->antenna = rx_stats->rs_antenna;
- rx_status->flag |= RX_FLAG_MACTIME_MPDU;
-