summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath9k/ani.h
diff options
context:
space:
mode:
authorSujith <Sujith.Manoharan@atheros.com>2009-02-09 07:59:49 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 18:44:56 (GMT)
commitee6e8d1c234e62e503f2dd8137643b24cf424886 (patch)
treeb1de72315221dbae01bbfdcb832f42b192040673 /drivers/net/wireless/ath9k/ani.h
parent394cf0a1ca02e7998c8d01975b60a3cdc121e7d8 (diff)
downloadlinux-fsl-qoriq-ee6e8d1c234e62e503f2dd8137643b24cf424886.tar.xz
ath9k: Convert ANI channel to a pointer
This patch converts the ANI channel reference to a pointer, this facilitates moving struct ar5416AniState to ani.h Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/ani.h')
-rw-r--r--drivers/net/wireless/ath9k/ani.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath9k/ani.h b/drivers/net/wireless/ath9k/ani.h
index cfb7fbc..78880e5 100644
--- a/drivers/net/wireless/ath9k/ani.h
+++ b/drivers/net/wireless/ath9k/ani.h
@@ -72,6 +72,33 @@ struct ath9k_node_stats {
u32 ns_avgtxrate;
};
+struct ar5416AniState {
+ struct ath9k_channel *c;
+ u8 noiseImmunityLevel;
+ u8 spurImmunityLevel;
+ u8 firstepLevel;
+ u8 ofdmWeakSigDetectOff;
+ u8 cckWeakSigThreshold;
+ u32 listenTime;
+ u32 ofdmTrigHigh;
+ u32 ofdmTrigLow;
+ int32_t cckTrigHigh;
+ int32_t cckTrigLow;
+ int32_t rssiThrLow;
+ int32_t rssiThrHigh;
+ u32 noiseFloor;
+ u32 txFrameCount;
+ u32 rxFrameCount;
+ u32 cycleCount;
+ u32 ofdmPhyErrCount;
+ u32 cckPhyErrCount;
+ u32 ofdmPhyErrBase;
+ u32 cckPhyErrBase;
+ int16_t pktRssi[2];
+ int16_t ofdmErrRssi[2];
+ int16_t cckErrRssi[2];
+};
+
struct ar5416Stats {
u32 ast_ani_niup;
u32 ast_ani_nidown;