From: Lennert Buytenhek Date: Wed, 23 Nov 2005 11:49:30 +0000 (+0100) Subject: [PATCH] enp2611: don't check netif_running() in link status timer X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=de287fd596e2e9ea9a29c397322d0a8b8a470cd1;p=mv-sheeva.git [PATCH] enp2611: don't check netif_running() in link status timer Even after an interface has gone !netif_running(), we still want to catch the 'carrier went down' event for our internal bookkeeping. Signed-off-by: Lennert Buytenhek Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/ixp2000/enp2611.c b/drivers/net/ixp2000/enp2611.c index 3262e70ede6..f0cc23d423e 100644 --- a/drivers/net/ixp2000/enp2611.c +++ b/drivers/net/ixp2000/enp2611.c @@ -148,9 +148,6 @@ static void enp2611_check_link_status(unsigned long __dummy) struct net_device *dev; int status; - if (!netif_running(nds[i])) - continue; - dev = nds[i]; status = pm3386_is_link_up(i);