Commit d23823dd authored by Michal Simek's avatar Michal Simek Committed by David S. Miller

net: macb: Remove CONFIG_PM ifdef because of compilation warning

Fix compilation warning:
drivers/net/ethernet/cadence/macb.c:2415:12: warning: 'macb_suspend'
defined but not used [-Wunused-function]
 static int macb_suspend(struct device *dev)
drivers/net/ethernet/cadence/macb.c:2432:12: warning: 'macb_resume'
defined but not used [-Wunused-function]
 static int macb_resume(struct device *dev)

when CONFIG_PM=y, CONFIG_PM_SLEEP=n are used.
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
Acked-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9e86d766
...@@ -2469,8 +2469,7 @@ static int macb_remove(struct platform_device *pdev) ...@@ -2469,8 +2469,7 @@ static int macb_remove(struct platform_device *pdev)
return 0; return 0;
} }
#ifdef CONFIG_PM static int __maybe_unused macb_suspend(struct device *dev)
static int macb_suspend(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct platform_device *pdev = to_platform_device(dev);
struct net_device *netdev = platform_get_drvdata(pdev); struct net_device *netdev = platform_get_drvdata(pdev);
...@@ -2487,7 +2486,7 @@ static int macb_suspend(struct device *dev) ...@@ -2487,7 +2486,7 @@ static int macb_suspend(struct device *dev)
return 0; return 0;
} }
static int macb_resume(struct device *dev) static int __maybe_unused macb_resume(struct device *dev)
{ {
struct platform_device *pdev = to_platform_device(dev); struct platform_device *pdev = to_platform_device(dev);
struct net_device *netdev = platform_get_drvdata(pdev); struct net_device *netdev = platform_get_drvdata(pdev);
...@@ -2502,7 +2501,6 @@ static int macb_resume(struct device *dev) ...@@ -2502,7 +2501,6 @@ static int macb_resume(struct device *dev)
return 0; return 0;
} }
#endif
static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume); static SIMPLE_DEV_PM_OPS(macb_pm_ops, macb_suspend, macb_resume);
......
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