b44: add calls to phy_{start,stop}
When support for external phys was added to b44, the calls to start and stop the phy were missing in the mac driver. This adds the calls to phy_start() and phy_stop(). Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
877767dccf
commit
25d54fe565
@ -1484,6 +1484,10 @@ static int b44_open(struct net_device *dev)
|
|||||||
add_timer(&bp->timer);
|
add_timer(&bp->timer);
|
||||||
|
|
||||||
b44_enable_ints(bp);
|
b44_enable_ints(bp);
|
||||||
|
|
||||||
|
if (bp->flags & B44_FLAG_EXTERNAL_PHY)
|
||||||
|
phy_start(bp->phydev);
|
||||||
|
|
||||||
netif_start_queue(dev);
|
netif_start_queue(dev);
|
||||||
out:
|
out:
|
||||||
return err;
|
return err;
|
||||||
@ -1646,6 +1650,9 @@ static int b44_close(struct net_device *dev)
|
|||||||
|
|
||||||
netif_stop_queue(dev);
|
netif_stop_queue(dev);
|
||||||
|
|
||||||
|
if (bp->flags & B44_FLAG_EXTERNAL_PHY)
|
||||||
|
phy_stop(bp->phydev);
|
||||||
|
|
||||||
napi_disable(&bp->napi);
|
napi_disable(&bp->napi);
|
||||||
|
|
||||||
del_timer_sync(&bp->timer);
|
del_timer_sync(&bp->timer);
|
||||||
|
Loading…
Reference in New Issue
Block a user