Commit 5371bbf4 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: bcmgenet: Do not suspend PHY if Wake-on-LAN is enabled

Suspending the PHY would be putting it in a low power state where it
may no longer allow us to do Wake-on-LAN.

Fixes: cc013fb4 ("net: bcmgenet: correctly suspend and resume PHY device")
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 88d339e2
...@@ -3481,6 +3481,7 @@ static int bcmgenet_suspend(struct device *d) ...@@ -3481,6 +3481,7 @@ static int bcmgenet_suspend(struct device *d)
bcmgenet_netif_stop(dev); bcmgenet_netif_stop(dev);
if (!device_may_wakeup(d))
phy_suspend(priv->phydev); phy_suspend(priv->phydev);
netif_device_detach(dev); netif_device_detach(dev);
...@@ -3578,6 +3579,7 @@ static int bcmgenet_resume(struct device *d) ...@@ -3578,6 +3579,7 @@ static int bcmgenet_resume(struct device *d)
netif_device_attach(dev); netif_device_attach(dev);
if (!device_may_wakeup(d))
phy_resume(priv->phydev); phy_resume(priv->phydev);
if (priv->eee.eee_enabled) if (priv->eee.eee_enabled)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment