]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/input/mouse/navpoint.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[karo-tx-linux.git] / drivers / input / mouse / navpoint.c
index 2a0360f5b5f76552582aa449fa6ab07d8d33c87f..d6e8f58a1de35aaa22296932e042b2a5fcbc2af8 100644 (file)
@@ -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);