Commit 01306e2f authored by Jay Vosburgh's avatar Jay Vosburgh Committed by Jeff Garzik

[netdrvr 3c59x] move netif_carrier_off() call outside vortex_debug test

parent 0d6f3f17
...@@ -1772,11 +1772,13 @@ vortex_timer(unsigned long data) ...@@ -1772,11 +1772,13 @@ vortex_timer(unsigned long data)
if (vortex_debug > 1) if (vortex_debug > 1)
printk(KERN_DEBUG "%s: Media %s has link beat, %x.\n", printk(KERN_DEBUG "%s: Media %s has link beat, %x.\n",
dev->name, media_tbl[dev->if_port].name, media_status); dev->name, media_tbl[dev->if_port].name, media_status);
} else if (vortex_debug > 1) { } else {
netif_carrier_off(dev); netif_carrier_off(dev);
if (vortex_debug > 1) {
printk(KERN_DEBUG "%s: Media %s has no link beat, %x.\n", printk(KERN_DEBUG "%s: Media %s has no link beat, %x.\n",
dev->name, media_tbl[dev->if_port].name, media_status); dev->name, media_tbl[dev->if_port].name, media_status);
} }
}
break; break;
case XCVR_MII: case XCVR_NWAY: case XCVR_MII: case XCVR_NWAY:
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment