[PATCH] enp2611: report link up/down events
Report carrier going up/down. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
c44185d4dc
commit
350f19632d
|
@ -152,10 +152,15 @@ static void enp2611_check_link_status(unsigned long __dummy)
|
||||||
|
|
||||||
status = pm3386_is_link_up(i);
|
status = pm3386_is_link_up(i);
|
||||||
if (status && !netif_carrier_ok(dev)) {
|
if (status && !netif_carrier_ok(dev)) {
|
||||||
|
/* @@@ Should report autonegotiation status. */
|
||||||
|
printk(KERN_INFO "%s: NIC Link is Up\n", dev->name);
|
||||||
|
|
||||||
pm3386_enable_tx(i);
|
pm3386_enable_tx(i);
|
||||||
caleb_enable_tx(i);
|
caleb_enable_tx(i);
|
||||||
netif_carrier_on(dev);
|
netif_carrier_on(dev);
|
||||||
} else if (!status && netif_carrier_ok(dev)) {
|
} else if (!status && netif_carrier_ok(dev)) {
|
||||||
|
printk(KERN_INFO "%s: NIC Link is Down\n", dev->name);
|
||||||
|
|
||||||
netif_carrier_off(dev);
|
netif_carrier_off(dev);
|
||||||
caleb_disable_tx(i);
|
caleb_disable_tx(i);
|
||||||
pm3386_disable_tx(i);
|
pm3386_disable_tx(i);
|
||||||
|
|
Loading…
Reference in New Issue