aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSujith <Sujith.Manoharan@atheros.com>2010-03-17 14:25:16 +0530
committerJohn W. Linville <linville@tuxdriver.com>2010-03-23 16:50:13 -0400
commit527d485fd8765e1df1dd9114f5c623253d6349c3 (patch)
tree11db449d1154f195a22879a4e6a3fda6c3ca68fc /drivers
parentath9k_hw: add GPIO setup code for AR9271 (diff)
downloadlinux-dev-527d485fd8765e1df1dd9114f5c623253d6349c3.tar.xz
linux-dev-527d485fd8765e1df1dd9114f5c623253d6349c3.zip
ath9k_hw: skip chip tests for AR9271
The chip test is not required for AR9271 on the host driver code as the firmware will do the test internally on its own. Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 7b1ba6fa4bec..b1a4a8352f40 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -499,8 +499,10 @@ static int ath9k_hw_post_init(struct ath_hw *ah)
{
int ecode;
- if (!ath9k_hw_chip_test(ah))
- return -ENODEV;
+ if (!AR_SREV_9271(ah)) {
+ if (!ath9k_hw_chip_test(ah))
+ return -ENODEV;
+ }
ecode = ath9k_hw_rf_claim(ah);
if (ecode != 0)