Commit ee6e8d1c authored by Sujith's avatar Sujith Committed by John W. Linville

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: default avatarSujith <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 394cf0a1
...@@ -23,11 +23,11 @@ static int ath9k_hw_get_ani_channel_idx(struct ath_hal *ah, ...@@ -23,11 +23,11 @@ static int ath9k_hw_get_ani_channel_idx(struct ath_hal *ah,
int i; int i;
for (i = 0; i < ARRAY_SIZE(ahp->ah_ani); i++) { for (i = 0; i < ARRAY_SIZE(ahp->ah_ani); i++) {
if (ahp->ah_ani[i].c.channel == chan->channel) if (ahp->ah_ani[i].c &&
ahp->ah_ani[i].c->channel == chan->channel)
return i; return i;
if (ahp->ah_ani[i].c.channel == 0) { if (ahp->ah_ani[i].c == NULL) {
ahp->ah_ani[i].c.channel = chan->channel; ahp->ah_ani[i].c = chan;
ahp->ah_ani[i].c.channelFlags = chan->channelFlags;
return i; return i;
} }
} }
......
...@@ -72,6 +72,33 @@ struct ath9k_node_stats { ...@@ -72,6 +72,33 @@ struct ath9k_node_stats {
u32 ns_avgtxrate; 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 { struct ar5416Stats {
u32 ast_ani_niup; u32 ast_ani_niup;
u32 ast_ani_nidown; u32 ast_ani_nidown;
......
...@@ -406,33 +406,6 @@ enum { ...@@ -406,33 +406,6 @@ enum {
ATH9K_RESET_COLD, ATH9K_RESET_COLD,
}; };
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 ath_hal { struct ath_hal {
u32 ah_magic; u32 ah_magic;
u16 ah_devid; u16 ah_devid;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment