Commit 3f6cc4e5 authored by Miaoqing Pan's avatar Miaoqing Pan Committed by Kalle Valo
Browse files

ath9k: do not reset while BB panic(0x4000409) on ar9561



BB panic(0x4000409) observed while AP enabling/disabling
bursting.

Signed-off-by: default avatarMiaoqing Pan <miaoqing@codeaurora.org>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 66b533d5
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -2071,7 +2071,8 @@ void ar9003_hw_attach_phy_ops(struct ath_hw *ah)
 *             to be disabled.
 *             to be disabled.
 *
 *
 * 0x04000409: Packet stuck on receive.
 * 0x04000409: Packet stuck on receive.
 *             Full chip reset is required for all chips except AR9340.
 *             Full chip reset is required for all chips except
 *	       AR9340, AR9531 and AR9561.
 */
 */


/*
/*
@@ -2100,7 +2101,7 @@ bool ar9003_hw_bb_watchdog_check(struct ath_hw *ah)
	case 0x04000b09:
	case 0x04000b09:
		return true;
		return true;
	case 0x04000409:
	case 0x04000409:
		if (AR_SREV_9340(ah) || AR_SREV_9531(ah))
		if (AR_SREV_9340(ah) || AR_SREV_9531(ah) || AR_SREV_9561(ah))
			return false;
			return false;
		else
		else
			return true;
			return true;