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
SVN-Revision: 26753
This commit is contained in:
parent
9dbcf86d8e
commit
f2ccc3ada5
1 changed files with 0 additions and 27 deletions
|
@ -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;
|
||||
|
Loading…
Reference in a new issue