From: Sujith Date: Wed, 17 Mar 2010 08:55:16 +0000 (+0530) Subject: ath9k_hw: skip chip tests for AR9271 X-Git-Tag: Ubuntu-5.13.0-19.19~31745^2~671^2~47 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=527d485fd8765e1df1dd9114f5c623253d6349c3;p=mirror_ubuntu-jammy-kernel.git 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 Signed-off-by: Vasanthakumar Thiagarajan Signed-off-by: Luis R. Rodriguez Signed-off-by: John W. Linville --- 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)