diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2009-02-09 02:57:26 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-13 13:45:10 -0500 |
commit | 2660b81a378ab227b78c4cc618453fa7e19a7c7b (patch) | |
tree | ea305af43f0e27c86538fecce6c9a4e0151dbc78 /drivers/net/wireless/ath9k/recv.c | |
parent | f74df6fbe31561091bf42be0ed30232be2b9d3ac (diff) |
ath9k: Remove all the useless ah_ variable prefixes
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/recv.c')
-rw-r--r-- | drivers/net/wireless/ath9k/recv.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/wireless/ath9k/recv.c b/drivers/net/wireless/ath9k/recv.c index 7c011b1ba333..08f676af894f 100644 --- a/drivers/net/wireless/ath9k/recv.c +++ b/drivers/net/wireless/ath9k/recv.c | |||
@@ -135,7 +135,7 @@ static int ath_rx_prepare(struct sk_buff *skb, struct ath_desc *ds, | |||
135 | * discard the frame. Enable this if you want to see | 135 | * discard the frame. Enable this if you want to see |
136 | * error frames in Monitor mode. | 136 | * error frames in Monitor mode. |
137 | */ | 137 | */ |
138 | if (sc->sc_ah->ah_opmode != NL80211_IFTYPE_MONITOR) | 138 | if (sc->sc_ah->opmode != NL80211_IFTYPE_MONITOR) |
139 | goto rx_next; | 139 | goto rx_next; |
140 | } else if (ds->ds_rxstat.rs_status != 0) { | 140 | } else if (ds->ds_rxstat.rs_status != 0) { |
141 | if (ds->ds_rxstat.rs_status & ATH9K_RXERR_CRC) | 141 | if (ds->ds_rxstat.rs_status & ATH9K_RXERR_CRC) |
@@ -161,7 +161,7 @@ static int ath_rx_prepare(struct sk_buff *skb, struct ath_desc *ds, | |||
161 | * decryption and MIC failures. For monitor mode, | 161 | * decryption and MIC failures. For monitor mode, |
162 | * we also ignore the CRC error. | 162 | * we also ignore the CRC error. |
163 | */ | 163 | */ |
164 | if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_MONITOR) { | 164 | if (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR) { |
165 | if (ds->ds_rxstat.rs_status & | 165 | if (ds->ds_rxstat.rs_status & |
166 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | | 166 | ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | |
167 | ATH9K_RXERR_CRC)) | 167 | ATH9K_RXERR_CRC)) |
@@ -241,7 +241,7 @@ static void ath_opmode_init(struct ath_softc *sc) | |||
241 | ath9k_hw_setrxfilter(ah, rfilt); | 241 | ath9k_hw_setrxfilter(ah, rfilt); |
242 | 242 | ||
243 | /* configure bssid mask */ | 243 | /* configure bssid mask */ |
244 | if (ah->ah_caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) | 244 | if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK) |
245 | ath9k_hw_setbssidmask(sc); | 245 | ath9k_hw_setbssidmask(sc); |
246 | 246 | ||
247 | /* configure operational mode */ | 247 | /* configure operational mode */ |
@@ -360,13 +360,13 @@ u32 ath_calcrxfilter(struct ath_softc *sc) | |||
360 | | ATH9K_RX_FILTER_MCAST; | 360 | | ATH9K_RX_FILTER_MCAST; |
361 | 361 | ||
362 | /* If not a STA, enable processing of Probe Requests */ | 362 | /* If not a STA, enable processing of Probe Requests */ |
363 | if (sc->sc_ah->ah_opmode != NL80211_IFTYPE_STATION) | 363 | if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION) |
364 | rfilt |= ATH9K_RX_FILTER_PROBEREQ; | 364 | rfilt |= ATH9K_RX_FILTER_PROBEREQ; |
365 | 365 | ||
366 | /* Can't set HOSTAP into promiscous mode */ | 366 | /* Can't set HOSTAP into promiscous mode */ |
367 | if (((sc->sc_ah->ah_opmode != NL80211_IFTYPE_AP) && | 367 | if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) && |
368 | (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) || | 368 | (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) || |
369 | (sc->sc_ah->ah_opmode == NL80211_IFTYPE_MONITOR)) { | 369 | (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR)) { |
370 | rfilt |= ATH9K_RX_FILTER_PROM; | 370 | rfilt |= ATH9K_RX_FILTER_PROM; |
371 | /* ??? To prevent from sending ACK */ | 371 | /* ??? To prevent from sending ACK */ |
372 | rfilt &= ~ATH9K_RX_FILTER_UCAST; | 372 | rfilt &= ~ATH9K_RX_FILTER_UCAST; |
@@ -375,13 +375,13 @@ u32 ath_calcrxfilter(struct ath_softc *sc) | |||
375 | if (sc->rx.rxfilter & FIF_CONTROL) | 375 | if (sc->rx.rxfilter & FIF_CONTROL) |
376 | rfilt |= ATH9K_RX_FILTER_CONTROL; | 376 | rfilt |= ATH9K_RX_FILTER_CONTROL; |
377 | 377 | ||
378 | if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_STATION || | 378 | if (sc->sc_ah->opmode == NL80211_IFTYPE_STATION || |
379 | sc->sc_ah->ah_opmode == NL80211_IFTYPE_ADHOC) | 379 | sc->sc_ah->opmode == NL80211_IFTYPE_ADHOC) |
380 | rfilt |= ATH9K_RX_FILTER_BEACON; | 380 | rfilt |= ATH9K_RX_FILTER_BEACON; |
381 | 381 | ||
382 | /* If in HOSTAP mode, want to enable reception of PSPOLL frames | 382 | /* If in HOSTAP mode, want to enable reception of PSPOLL frames |
383 | & beacon frames */ | 383 | & beacon frames */ |
384 | if (sc->sc_ah->ah_opmode == NL80211_IFTYPE_AP) | 384 | if (sc->sc_ah->opmode == NL80211_IFTYPE_AP) |
385 | rfilt |= (ATH9K_RX_FILTER_BEACON | ATH9K_RX_FILTER_PSPOLL); | 385 | rfilt |= (ATH9K_RX_FILTER_BEACON | ATH9K_RX_FILTER_PSPOLL); |
386 | 386 | ||
387 | return rfilt; | 387 | return rfilt; |