Commit dcdf8710 authored by Ben Boeckel's avatar Ben Boeckel Committed by David S. Miller

smc911x: replace printk with netdev_ calls

Also fixes an incorrect function comment (probably copy/paste).
Signed-off-by: default avatarBen Boeckel <mathstuf@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6389aa45
This diff is collapsed.
...@@ -227,7 +227,7 @@ static inline void SMC_outsl(struct smc911x_local *lp, int reg, ...@@ -227,7 +227,7 @@ static inline void SMC_outsl(struct smc911x_local *lp, int reg,
#define SMC_DMA_ACK_IRQ(dev, dma) \ #define SMC_DMA_ACK_IRQ(dev, dma) \
{ \ { \
if (DCSR(dma) & DCSR_BUSERR) { \ if (DCSR(dma) & DCSR_BUSERR) { \
printk("%s: DMA %d bus error!\n", dev->name, dma); \ netdev_err(dev, "DMA %d bus error!\n", dma); \
} \ } \
DCSR(dma) = DCSR_STARTINTR|DCSR_ENDINTR|DCSR_BUSERR; \ DCSR(dma) = DCSR_STARTINTR|DCSR_ENDINTR|DCSR_BUSERR; \
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment