|
@@ -318,8 +318,7 @@ static int navpoint_remove(struct platform_device *pdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_PM_SLEEP
|
|
|
-static int navpoint_suspend(struct device *dev)
|
|
|
+static int __maybe_unused navpoint_suspend(struct device *dev)
|
|
|
{
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
|
struct navpoint *navpoint = platform_get_drvdata(pdev);
|
|
@@ -333,7 +332,7 @@ static int navpoint_suspend(struct device *dev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int navpoint_resume(struct device *dev)
|
|
|
+static int __maybe_unused navpoint_resume(struct device *dev)
|
|
|
{
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
|
|
struct navpoint *navpoint = platform_get_drvdata(pdev);
|
|
@@ -346,7 +345,6 @@ static int navpoint_resume(struct device *dev)
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
-#endif
|
|
|
|
|
|
static SIMPLE_DEV_PM_OPS(navpoint_pm_ops, navpoint_suspend, navpoint_resume);
|
|
|
|