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

smc91x: replace printk with netdev_ calls

Also snipes some whitespace errors.
Signed-off-by: default avatarBen Boeckel <mathstuf@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3ee307de
This diff is collapsed.
...@@ -907,8 +907,8 @@ static const char * chip_ids[ 16 ] = { ...@@ -907,8 +907,8 @@ static const char * chip_ids[ 16 ] = {
({ \ ({ \
int __b = SMC_CURRENT_BANK(lp); \ int __b = SMC_CURRENT_BANK(lp); \
if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \ if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
printk( "%s: bank reg screwed (0x%04x)\n", \ pr_err("%s: bank reg screwed (0x%04x)\n", \
CARDNAME, __b ); \ CARDNAME, __b); \
BUG(); \ BUG(); \
} \ } \
reg<<SMC_IO_SHIFT; \ reg<<SMC_IO_SHIFT; \
......
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