diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/dma.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/dma.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/ath/ath5k/dma.c b/drivers/net/wireless/ath/ath5k/dma.c index b788ecfbdaf6..0d5d4033f12a 100644 --- a/drivers/net/wireless/ath/ath5k/dma.c +++ b/drivers/net/wireless/ath/ath5k/dma.c | |||
@@ -73,7 +73,7 @@ static int ath5k_hw_stop_rx_dma(struct ath5k_hw *ah) | |||
73 | udelay(100); | 73 | udelay(100); |
74 | 74 | ||
75 | if (!i) | 75 | if (!i) |
76 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 76 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
77 | "failed to stop RX DMA !\n"); | 77 | "failed to stop RX DMA !\n"); |
78 | 78 | ||
79 | return i ? 0 : -EBUSY; | 79 | return i ? 0 : -EBUSY; |
@@ -100,7 +100,7 @@ u32 ath5k_hw_get_rxdp(struct ath5k_hw *ah) | |||
100 | int ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr) | 100 | int ath5k_hw_set_rxdp(struct ath5k_hw *ah, u32 phys_addr) |
101 | { | 101 | { |
102 | if (ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_CR_RXE) { | 102 | if (ath5k_hw_reg_read(ah, AR5K_CR) & AR5K_CR_RXE) { |
103 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 103 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
104 | "tried to set RXDP while rx was active !\n"); | 104 | "tried to set RXDP while rx was active !\n"); |
105 | return -EIO; | 105 | return -EIO; |
106 | } | 106 | } |
@@ -243,7 +243,7 @@ static int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue) | |||
243 | udelay(100); | 243 | udelay(100); |
244 | 244 | ||
245 | if (AR5K_REG_READ_Q(ah, AR5K_QCU_TXE, queue)) | 245 | if (AR5K_REG_READ_Q(ah, AR5K_QCU_TXE, queue)) |
246 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 246 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
247 | "queue %i didn't stop !\n", queue); | 247 | "queue %i didn't stop !\n", queue); |
248 | 248 | ||
249 | /* Check for pending frames */ | 249 | /* Check for pending frames */ |
@@ -295,7 +295,7 @@ static int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue) | |||
295 | AR5K_DIAG_SW_CHANNEL_IDLE_HIGH); | 295 | AR5K_DIAG_SW_CHANNEL_IDLE_HIGH); |
296 | 296 | ||
297 | if (pending) | 297 | if (pending) |
298 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 298 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
299 | "quiet mechanism didn't work q:%i !\n", | 299 | "quiet mechanism didn't work q:%i !\n", |
300 | queue); | 300 | queue); |
301 | } | 301 | } |
@@ -309,7 +309,7 @@ static int ath5k_hw_stop_tx_dma(struct ath5k_hw *ah, unsigned int queue) | |||
309 | /* Clear register */ | 309 | /* Clear register */ |
310 | ath5k_hw_reg_write(ah, 0, AR5K_QCU_TXD); | 310 | ath5k_hw_reg_write(ah, 0, AR5K_QCU_TXD); |
311 | if (pending) { | 311 | if (pending) { |
312 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 312 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
313 | "tx dma didn't stop (q:%i, frm:%i) !\n", | 313 | "tx dma didn't stop (q:%i, frm:%i) !\n", |
314 | queue, pending); | 314 | queue, pending); |
315 | return -EBUSY; | 315 | return -EBUSY; |
@@ -333,7 +333,7 @@ int ath5k_hw_stop_beacon_queue(struct ath5k_hw *ah, unsigned int queue) | |||
333 | int ret; | 333 | int ret; |
334 | ret = ath5k_hw_stop_tx_dma(ah, queue); | 334 | ret = ath5k_hw_stop_tx_dma(ah, queue); |
335 | if (ret) { | 335 | if (ret) { |
336 | ATH5K_DBG(ah->ah_sc, ATH5K_DEBUG_DMA, | 336 | ATH5K_DBG(ah, ATH5K_DEBUG_DMA, |
337 | "beacon queue didn't stop !\n"); | 337 | "beacon queue didn't stop !\n"); |
338 | return -EIO; | 338 | return -EIO; |
339 | } | 339 | } |