aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath9k/hw.c
diff options
context:
space:
mode:
authorSujith <Sujith.Manoharan@atheros.com>2009-02-09 02:57:03 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 13:44:58 -0500
commit17d7904de85125c62c7258d7cb21207f26d04048 (patch)
tree298d52125b29534c6dfcf79d6eb643c2261e82df /drivers/net/wireless/ath9k/hw.c
parentee6e8d1c234e62e503f2dd8137643b24cf424886 (diff)
ath9k: Remove all the sc_ prefixes
This patch removes the useless sc_ prefixes for all variables. Also, refer to interfaces as VIFs and not as VAPs anymore. Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/hw.c')
-rw-r--r--drivers/net/wireless/ath9k/hw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath9k/hw.c b/drivers/net/wireless/ath9k/hw.c
index 075ddc522c98..1a6c5acc3f0e 100644
--- a/drivers/net/wireless/ath9k/hw.c
+++ b/drivers/net/wireless/ath9k/hw.c
@@ -2158,9 +2158,9 @@ int ath9k_hw_reset(struct ath_hal *ah, struct ath9k_channel *chan,
2158 u32 macStaId1; 2158 u32 macStaId1;
2159 int i, rx_chainmask, r; 2159 int i, rx_chainmask, r;
2160 2160
2161 ahp->ah_extprotspacing = sc->sc_ht_extprotspacing; 2161 ahp->ah_extprotspacing = sc->ht_extprotspacing;
2162 ahp->ah_txchainmask = sc->sc_tx_chainmask; 2162 ahp->ah_txchainmask = sc->tx_chainmask;
2163 ahp->ah_rxchainmask = sc->sc_rx_chainmask; 2163 ahp->ah_rxchainmask = sc->rx_chainmask;
2164 2164
2165 if (AR_SREV_9285(ah)) { 2165 if (AR_SREV_9285(ah)) {
2166 ahp->ah_txchainmask &= 0x1; 2166 ahp->ah_txchainmask &= 0x1;