mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
sky2: don't stop queue on shutdown
It is unnecessary, to stop queue and turn off carrier in shutdown routine. With new netdev_queue this causes warnings. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c010b2f76c
commit
8a6d2ea0cd
@ -1829,9 +1829,6 @@ static int sky2_down(struct net_device *dev)
|
||||
if (netif_msg_ifdown(sky2))
|
||||
printk(KERN_INFO PFX "%s: disabling interface\n", dev->name);
|
||||
|
||||
/* Stop more packets from being queued */
|
||||
netif_stop_queue(dev);
|
||||
|
||||
/* Disable port IRQ */
|
||||
imask = sky2_read32(hw, B0_IMSK);
|
||||
imask &= ~portirq_msk[port];
|
||||
@ -1887,8 +1884,6 @@ static int sky2_down(struct net_device *dev)
|
||||
|
||||
sky2_phy_power_down(hw, port);
|
||||
|
||||
netif_carrier_off(dev);
|
||||
|
||||
/* turn off LED's */
|
||||
sky2_write16(hw, B0_Y2LED, LED_STAT_OFF);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user