diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2010-06-19 08:29:08 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-21 15:39:59 -0400 |
commit | bb64d95e539fe09230d42b4634ac712ca5cb700b (patch) | |
tree | 61f48ca74849b661022a5c57102b514ec7e83308 /drivers | |
parent | 051cb98686ab84a89b713cb69093445ce6a95b3d (diff) | |
download | linux-bb64d95e539fe09230d42b4634ac712ca5cb700b.tar.gz linux-bb64d95e539fe09230d42b4634ac712ca5cb700b.tar.bz2 linux-bb64d95e539fe09230d42b4634ac712ca5cb700b.zip |
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.c | 2 |
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) dma_reason[2], dma_reason[3], dma_reason[4], dma_reason[5]); b43err(dev->wl, "This device does not support DMA " - "on your system. Please use PIO instead.\n"); + "on your system. It will now be switched to PIO.\n"); /* Fall back to PIO transfers if we get fatal DMA errors! */ dev->use_pio = 1; b43_controller_restart(dev, "DMA error"); |