aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Swierk <eswierk@arastra.com>2007-09-28 22:42:13 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:53:54 -0700
commitf7ab697d328b0a417d9e3cb891d45693ea89e83d (patch)
tree46e94a6cf8c2b4e118f4be4b3109477fc0f452ff
parentPHYLIB: Spinlock fixes for softirqs (diff)
downloadlinux-dev-f7ab697d328b0a417d9e3cb891d45693ea89e83d.tar.xz
linux-dev-f7ab697d328b0a417d9e3cb891d45693ea89e83d.zip
forcedeth: "no link" is informational
Log "no link during initialization" at KERN_INFO as it's not an error, and occurs every time the interface comes up (when the forcedeth-phy-power-down patch is applied). Signed-off-by: Ed Swierk <eswierk@arastra.com> Cc: Ayaz Abdulla <aabdulla@nvidia.com> Cc: Jeff Garzik <jeff@garzik.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r--drivers/net/forcedeth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c
index 666de42e5a76..dae30b731342 100644
--- a/drivers/net/forcedeth.c
+++ b/drivers/net/forcedeth.c
@@ -4917,7 +4917,7 @@ static int nv_open(struct net_device *dev)
if (ret) {
netif_carrier_on(dev);
} else {
- printk("%s: no link during initialization.\n", dev->name);
+ printk(KERN_INFO "%s: no link during initialization.\n", dev->name);
netif_carrier_off(dev);
}
if (oom)