diff options
author | Joe Perches <joe@perches.com> | 2010-10-25 12:44:20 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-26 14:35:37 -0400 |
commit | 1941bf8c8d9392b18cd9bfed8050a2d78850aede (patch) | |
tree | 4bee36e7713772fd39b790ddc69f12b5bd0e1225 /drivers/atm/eni.c | |
parent | f2dc0d1809ab7e0147c7e4ac837be1682f706538 (diff) |
drivers/atm/eni.c: Remove multiple uses of KERN_<level>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm/eni.c')
-rw-r--r-- | drivers/atm/eni.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/atm/eni.c b/drivers/atm/eni.c index 80f9f3659e4d..97c5898cd76e 100644 --- a/drivers/atm/eni.c +++ b/drivers/atm/eni.c | |||
@@ -1736,9 +1736,10 @@ static int __devinit eni_do_init(struct atm_dev *dev) | |||
1736 | eprom = (base+EPROM_SIZE-sizeof(struct midway_eprom)); | 1736 | eprom = (base+EPROM_SIZE-sizeof(struct midway_eprom)); |
1737 | if (readl(&eprom->magic) != ENI155_MAGIC) { | 1737 | if (readl(&eprom->magic) != ENI155_MAGIC) { |
1738 | printk("\n"); | 1738 | printk("\n"); |
1739 | printk(KERN_ERR KERN_ERR DEV_LABEL "(itf %d): bad " | 1739 | printk(KERN_ERR DEV_LABEL |
1740 | "magic - expected 0x%x, got 0x%x\n",dev->number, | 1740 | "(itf %d): bad magic - expected 0x%x, got 0x%x\n", |
1741 | ENI155_MAGIC,(unsigned) readl(&eprom->magic)); | 1741 | dev->number, ENI155_MAGIC, |
1742 | (unsigned)readl(&eprom->magic)); | ||
1742 | error = -EINVAL; | 1743 | error = -EINVAL; |
1743 | goto unmap; | 1744 | goto unmap; |
1744 | } | 1745 | } |