|
@@ -417,9 +417,7 @@ static int stmmac_pltfr_suspend(struct device *dev)
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
|
|
|
|
ret = stmmac_suspend(dev);
|
|
|
- if (priv->plat->suspend)
|
|
|
- priv->plat->suspend(pdev, priv->plat->bsp_priv);
|
|
|
- else if (priv->plat->exit)
|
|
|
+ if (priv->plat->exit)
|
|
|
priv->plat->exit(pdev, priv->plat->bsp_priv);
|
|
|
|
|
|
return ret;
|
|
@@ -438,9 +436,7 @@ static int stmmac_pltfr_resume(struct device *dev)
|
|
|
struct stmmac_priv *priv = netdev_priv(ndev);
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
|
|
|
|
- if (priv->plat->resume)
|
|
|
- priv->plat->resume(pdev, priv->plat->bsp_priv);
|
|
|
- else if (priv->plat->init)
|
|
|
+ if (priv->plat->init)
|
|
|
priv->plat->init(pdev, priv->plat->bsp_priv);
|
|
|
|
|
|
return stmmac_resume(dev);
|