mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
usbnet: asix: apply usbnet_link_change
Use usbnet_link_change to handle link change centrally. Signed-off-by: Ming Lei <ming.lei@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8a34b0ae87
commit
eae65919aa
@ -55,11 +55,7 @@ static void asix_status(struct usbnet *dev, struct urb *urb)
|
||||
event = urb->transfer_buffer;
|
||||
link = event->link & 0x01;
|
||||
if (netif_carrier_ok(dev->net) != link) {
|
||||
if (link) {
|
||||
netif_carrier_on(dev->net);
|
||||
usbnet_defer_kevent (dev, EVENT_LINK_RESET );
|
||||
} else
|
||||
netif_carrier_off(dev->net);
|
||||
usbnet_link_change(dev, link, 1);
|
||||
netdev_dbg(dev->net, "Link Status is: %d\n", link);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user