diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-03-05 20:29:22 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-03-05 20:29:22 +0000 |
commit | 2702ae4e8fa7b132ec80823b77a695726cf11bab (patch) | |
tree | b083f3280d0dd6b970544aaca90ed7d7a643f375 /target | |
parent | a4bccded57d853bcb9c72abdba925e84df81f02b (diff) | |
download | upstream-2702ae4e8fa7b132ec80823b77a695726cf11bab.tar.gz upstream-2702ae4e8fa7b132ec80823b77a695726cf11bab.tar.bz2 upstream-2702ae4e8fa7b132ec80823b77a695726cf11bab.zip |
ar71xx: ag71xx: move calling ag71xx_phy_stop out from spinlock
SVN-Revision: 20004
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c index 3644b2dd91..06a1f67d88 100644 --- a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c +++ b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx_main.c @@ -580,15 +580,15 @@ static int ag71xx_stop(struct net_device *dev) struct ag71xx *ag = netdev_priv(dev); unsigned long flags; + netif_carrier_off(dev); + ag71xx_phy_stop(ag); + spin_lock_irqsave(&ag->lock, flags); netif_stop_queue(dev); ag71xx_hw_stop(ag); - netif_carrier_off(dev); - ag71xx_phy_stop(ag); - napi_disable(&ag->napi); del_timer_sync(&ag->oom_timer); |