diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-09-29 17:15:27 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-05 13:35:21 -0400 |
commit | d9891c7804f27c5b0ea9eb51f42bf473b24338a0 (patch) | |
tree | 02cf0c0ba96c1a9763d5720cc68c8e6a0926c54f /drivers/net/wireless/ath/ath9k/hw.h | |
parent | 35ecfe03d96b7cdaf6e50aba13af37e2c99deb57 (diff) | |
download | op-kernel-dev-d9891c7804f27c5b0ea9eb51f42bf473b24338a0.zip op-kernel-dev-d9891c7804f27c5b0ea9eb51f42bf473b24338a0.tar.gz |
ath9k_hw: keep calibrated noise floor values per channel
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index df47f79..1b6739b 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h @@ -342,7 +342,6 @@ struct ath9k_hw_cal_data { int32_t CalValid; int8_t iCoff; int8_t qCoff; - int16_t rawNoiseFloor; bool paprd_done; bool nfcal_pending; bool nfcal_interference; @@ -356,6 +355,7 @@ struct ath9k_channel { u16 channel; u32 channelFlags; u32 chanmode; + s16 noisefloor; }; #define IS_CHAN_G(_c) ((((_c)->channelFlags & (CHANNEL_G)) == CHANNEL_G) || \ |