mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-08 02:15:19 +02:00
15 lines
568 B
Diff
15 lines
568 B
Diff
|
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
|
||
|
index 6315e7d..a35af90 100644
|
||
|
--- a/drivers/net/wireless/ath/ath9k/hw.c
|
||
|
+++ b/drivers/net/wireless/ath/ath9k/hw.c
|
||
|
@@ -1592,7 +1592,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
|
||
|
REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
|
||
|
}
|
||
|
#ifdef __BIG_ENDIAN
|
||
|
- else if (AR_SREV_9340(ah))
|
||
|
+ else if (AR_SREV_9330(ah) || AR_SREV_9340(ah))
|
||
|
REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
|
||
|
else
|
||
|
REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
|
||
|
|