Skip to content

Commit

Permalink
mac8390: raise error logging priority
Browse files Browse the repository at this point in the history
Log error conditions using KERN_ERR priority.

Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Finn Thain authored and David S. Miller committed Jun 2, 2010
1 parent 130c0f4 commit d92222e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/mac8390.c
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ static int __init mac8390_initdev(struct net_device *dev,
case MAC8390_APPLE:
switch (mac8390_testio(dev->mem_start)) {
case ACCESS_UNKNOWN:
pr_info("Don't know how to access card memory!\n");
pr_err("Don't know how to access card memory!\n");
return -ENODEV;
break;

Expand Down Expand Up @@ -646,7 +646,7 @@ static int mac8390_open(struct net_device *dev)
__ei_open(dev);
err = request_irq(dev->irq, __ei_interrupt, 0, "8390 Ethernet", dev);
if (err)
pr_info("%s: unable to get IRQ %d\n", dev->name, dev->irq);
pr_err("%s: unable to get IRQ %d\n", dev->name, dev->irq);
return err;
}

Expand Down

0 comments on commit d92222e

Please sign in to comment.