diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2009-01-29 01:07:35 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-09 15:03:39 -0500 |
commit | feed029cd63ee14df85afbe1583960c0e983a0ed (patch) | |
tree | 216d4a5fc14405ff44a9057b7bab95d1629527b4 /drivers/net/wireless/ath9k/hw.c | |
parent | e374055afbf92c8d128d8538aafc7e765838206e (diff) |
ath9k: Fix typo in checking for chip revision
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/hw.c b/drivers/net/wireless/ath9k/hw.c index 77282345efc1..00ed44a0c313 100644 --- a/drivers/net/wireless/ath9k/hw.c +++ b/drivers/net/wireless/ath9k/hw.c | |||
@@ -267,7 +267,7 @@ static int ath9k_hw_get_radiorev(struct ath_hal *ah) | |||
267 | 267 | ||
268 | static void ath9k_hw_disablepcie(struct ath_hal *ah) | 268 | static void ath9k_hw_disablepcie(struct ath_hal *ah) |
269 | { | 269 | { |
270 | if (!AR_SREV_9100(ah)) | 270 | if (AR_SREV_9100(ah)) |
271 | return; | 271 | return; |
272 | 272 | ||
273 | REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00); | 273 | REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00); |