diff options
| -rw-r--r-- | drivers/net/phy/mdio_bus.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c index 11adf6ed4628..811a637695ca 100644 --- a/drivers/net/phy/mdio_bus.c +++ b/drivers/net/phy/mdio_bus.c | |||
| @@ -296,9 +296,8 @@ static int mdio_bus_suspend(struct device * dev, pm_message_t state) | |||
| 296 | struct phy_driver *phydrv = to_phy_driver(drv); | 296 | struct phy_driver *phydrv = to_phy_driver(drv); |
| 297 | struct phy_device *phydev = to_phy_device(dev); | 297 | struct phy_device *phydev = to_phy_device(dev); |
| 298 | 298 | ||
| 299 | if ((!device_may_wakeup(phydev->dev.parent)) && | 299 | if (drv && phydrv->suspend && !device_may_wakeup(phydev->dev.parent)) |
| 300 | (phydrv && phydrv->suspend)) | 300 | ret = phydrv->suspend(phydev); |
| 301 | ret = phydrv->suspend(phydev); | ||
| 302 | 301 | ||
| 303 | return ret; | 302 | return ret; |
| 304 | } | 303 | } |
| @@ -310,8 +309,7 @@ static int mdio_bus_resume(struct device * dev) | |||
| 310 | struct phy_driver *phydrv = to_phy_driver(drv); | 309 | struct phy_driver *phydrv = to_phy_driver(drv); |
| 311 | struct phy_device *phydev = to_phy_device(dev); | 310 | struct phy_device *phydev = to_phy_device(dev); |
| 312 | 311 | ||
| 313 | if ((!device_may_wakeup(phydev->dev.parent)) && | 312 | if (drv && phydrv->resume && !device_may_wakeup(phydev->dev.parent)) |
| 314 | (phydrv && phydrv->resume)) | ||
| 315 | ret = phydrv->resume(phydev); | 313 | ret = phydrv->resume(phydev); |
| 316 | 314 | ||
| 317 | return ret; | 315 | return ret; |
