diff options
author | Sujith Manoharan <c_manoha@qca.qualcomm.com> | 2014-03-17 05:32:47 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-03-17 13:44:15 -0400 |
commit | c90d4f7bc5b8595b86753d3c0b64259c3972b341 (patch) | |
tree | 89b1f8e1186e8e29e9c03e874ebc0a201af7b741 /drivers/net/wireless/ath/ath9k | |
parent | c08148bb7540c4547691c8fbe6db80edaf26cf10 (diff) |
ath9k: Disable AR_INTR_SYNC_HOST1_FATAL for QCA953x
Along with AR9340 and AR955x, this is also needed for
the QCA953x SoC.
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath9k/mac.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 177cd16dfcec..0992f7c70e1a 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -882,7 +882,7 @@ static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah, | |||
882 | AR_IMR_RXORN | | 882 | AR_IMR_RXORN | |
883 | AR_IMR_BCNMISC; | 883 | AR_IMR_BCNMISC; |
884 | 884 | ||
885 | if (AR_SREV_9340(ah) || AR_SREV_9550(ah)) | 885 | if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah)) |
886 | sync_default &= ~AR_INTR_SYNC_HOST1_FATAL; | 886 | sync_default &= ~AR_INTR_SYNC_HOST1_FATAL; |
887 | 887 | ||
888 | if (AR_SREV_9300_20_OR_LATER(ah)) { | 888 | if (AR_SREV_9300_20_OR_LATER(ah)) { |
diff --git a/drivers/net/wireless/ath/ath9k/mac.c b/drivers/net/wireless/ath/ath9k/mac.c index 5f727588ca27..51ce36f108f9 100644 --- a/drivers/net/wireless/ath/ath9k/mac.c +++ b/drivers/net/wireless/ath/ath9k/mac.c | |||
@@ -827,7 +827,7 @@ void ath9k_hw_enable_interrupts(struct ath_hw *ah) | |||
827 | return; | 827 | return; |
828 | } | 828 | } |
829 | 829 | ||
830 | if (AR_SREV_9340(ah) || AR_SREV_9550(ah)) | 830 | if (AR_SREV_9340(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah)) |
831 | sync_default &= ~AR_INTR_SYNC_HOST1_FATAL; | 831 | sync_default &= ~AR_INTR_SYNC_HOST1_FATAL; |
832 | 832 | ||
833 | async_mask = AR_INTR_MAC_IRQ; | 833 | async_mask = AR_INTR_MAC_IRQ; |