projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2dc0d1
)
drivers/atm/eni.c: Remove multiple uses of KERN_<level>
author
Joe Perches
<joe@perches.com>
Mon, 25 Oct 2010 16:44:20 +0000
(16:44 +0000)
committer
David S. Miller
<davem@davemloft.net>
Tue, 26 Oct 2010 18:35:37 +0000
(11:35 -0700)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/atm/eni.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/atm/eni.c
b/drivers/atm/eni.c
index 80f9f3659e4d83f246bafb936c2490ff15455c4a..97c5898cd76e894350dfcc3a444de9ce2d202e35 100644
(file)
--- a/
drivers/atm/eni.c
+++ b/
drivers/atm/eni.c
@@
-1736,9
+1736,10
@@
static int __devinit eni_do_init(struct atm_dev *dev)
eprom = (base+EPROM_SIZE-sizeof(struct midway_eprom));
if (readl(&eprom->magic) != ENI155_MAGIC) {
printk("\n");
- printk(KERN_ERR KERN_ERR DEV_LABEL "(itf %d): bad "
- "magic - expected 0x%x, got 0x%x\n",dev->number,
- ENI155_MAGIC,(unsigned) readl(&eprom->magic));
+ printk(KERN_ERR DEV_LABEL
+ "(itf %d): bad magic - expected 0x%x, got 0x%x\n",
+ dev->number, ENI155_MAGIC,
+ (unsigned)readl(&eprom->magic));
error = -EINVAL;
goto unmap;
}