aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2010-06-19 09:29:08 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-06-21 15:39:59 -0400
commitbb64d95e539fe09230d42b4634ac712ca5cb700b (patch)
tree61f48ca74849b661022a5c57102b514ec7e83308 /drivers
parent051cb98686ab84a89b713cb69093445ce6a95b3d (diff)
b43: Clarify logged message after fatal DMA error and switch to PIO mode
The message following fatal DMA errors fails to indicate properly that the driver has switched to PIO mode. Signed-off-by: Larry Finger <Larry.Finger@wfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/b43/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c
index 7965b70efbab..8e243798ae93 100644
--- a/drivers/net/wireless/b43/main.c
+++ b/drivers/net/wireless/b43/main.c
@@ -1804,7 +1804,7 @@ static void b43_do_interrupt_thread(struct b43_wldev *dev)
1804 dma_reason[2], dma_reason[3], 1804 dma_reason[2], dma_reason[3],
1805 dma_reason[4], dma_reason[5]); 1805 dma_reason[4], dma_reason[5]);
1806 b43err(dev->wl, "This device does not support DMA " 1806 b43err(dev->wl, "This device does not support DMA "
1807 "on your system. Please use PIO instead.\n"); 1807 "on your system. It will now be switched to PIO.\n");
1808 /* Fall back to PIO transfers if we get fatal DMA errors! */ 1808 /* Fall back to PIO transfers if we get fatal DMA errors! */
1809 dev->use_pio = 1; 1809 dev->use_pio = 1;
1810 b43_controller_restart(dev, "DMA error"); 1810 b43_controller_restart(dev, "DMA error");