072937888e
3.18.12 backported 61ada528dea028331e99e8ceaed87c683ad25de2 ("sched/wait: Provide infrastructure to deal with nested blocking") from 3.19, causing the following error on load: [ 13.588000] compat: exports duplicate symbol woken_wake_function (owned by kernel) Fix this by guarding it with a check for 3.18.11 or earlier instead of 3.19. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 45710
29 lines
819 B
Diff
29 lines
819 B
Diff
--- a/drivers/net/wireless/ath/ath9k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath9k/mac.c
|
|
@@ -693,7 +693,7 @@ bool ath9k_hw_stopdmarecv(struct ath_hw
|
|
{
|
|
#define AH_RX_STOP_DMA_TIMEOUT 10000 /* usec */
|
|
struct ath_common *common = ath9k_hw_common(ah);
|
|
- u32 mac_status, last_mac_status = 0;
|
|
+ u32 mac_status = 0, last_mac_status = 0;
|
|
int i;
|
|
|
|
/* Enable access to the DMA observation bus */
|
|
@@ -723,6 +723,16 @@ bool ath9k_hw_stopdmarecv(struct ath_hw
|
|
}
|
|
|
|
if (i == 0) {
|
|
+ if (!AR_SREV_9300_20_OR_LATER(ah) &&
|
|
+ (mac_status & 0x700) == 0) {
|
|
+ /*
|
|
+ * DMA is idle but the MAC is still stuck
|
|
+ * processing events
|
|
+ */
|
|
+ *reset = true;
|
|
+ return true;
|
|
+ }
|
|
+
|
|
ath_err(common,
|
|
"DMA failed to stop in %d ms AR_CR=0x%08x AR_DIAG_SW=0x%08x DMADBG_7=0x%08x\n",
|
|
AH_RX_STOP_DMA_TIMEOUT / 1000,
|