diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2013-06-10 04:19:40 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-25 17:07:30 -0400 |
commit | 64ea2992a29aa0bdc4eaf457351b063caafb6655 (patch) | |
tree | e7f1b20af78ddbb31dfcbdf36e68c4484dc03ec9 /drivers/net/wireless/ath | |
parent | 13311514a74f520989e304b746dc7478335877f9 (diff) |
ath9k: Do not assign noise for NULL caldata
commit d3bcb7b24bbf09fde8405770e676fe0c11c79662 upstream.
ah->noise is maintained globally and not per-channel. This
is updated in the reset() routine after the NF history has been
filled for the *current channel*, just before switching to
the new channel. There is no need to do it inside getnf(), since
ah->noise must contain a value for the new channel.
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/calib.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/calib.c b/drivers/net/wireless/ath/ath9k/calib.c index 7304e7585009..5e8219a91e25 100644 --- a/drivers/net/wireless/ath/ath9k/calib.c +++ b/drivers/net/wireless/ath/ath9k/calib.c | |||
@@ -387,7 +387,6 @@ bool ath9k_hw_getnf(struct ath_hw *ah, struct ath9k_channel *chan) | |||
387 | 387 | ||
388 | if (!caldata) { | 388 | if (!caldata) { |
389 | chan->noisefloor = nf; | 389 | chan->noisefloor = nf; |
390 | ah->noise = ath9k_hw_getchan_noise(ah, chan); | ||
391 | return false; | 390 | return false; |
392 | } | 391 | } |
393 | 392 | ||