diff options
Diffstat (limited to 'drivers/input/misc/max8925_onkey.c')
-rw-r--r-- | drivers/input/misc/max8925_onkey.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/input/misc/max8925_onkey.c b/drivers/input/misc/max8925_onkey.c index 3809618e6a5d..11d0d3770239 100644 --- a/drivers/input/misc/max8925_onkey.c +++ b/drivers/input/misc/max8925_onkey.c | |||
@@ -133,8 +133,7 @@ static int max8925_onkey_probe(struct platform_device *pdev) | |||
133 | return 0; | 133 | return 0; |
134 | } | 134 | } |
135 | 135 | ||
136 | #ifdef CONFIG_PM_SLEEP | 136 | static int __maybe_unused max8925_onkey_suspend(struct device *dev) |
137 | static int max8925_onkey_suspend(struct device *dev) | ||
138 | { | 137 | { |
139 | struct platform_device *pdev = to_platform_device(dev); | 138 | struct platform_device *pdev = to_platform_device(dev); |
140 | struct max8925_onkey_info *info = platform_get_drvdata(pdev); | 139 | struct max8925_onkey_info *info = platform_get_drvdata(pdev); |
@@ -148,7 +147,7 @@ static int max8925_onkey_suspend(struct device *dev) | |||
148 | return 0; | 147 | return 0; |
149 | } | 148 | } |
150 | 149 | ||
151 | static int max8925_onkey_resume(struct device *dev) | 150 | static int __maybe_unused max8925_onkey_resume(struct device *dev) |
152 | { | 151 | { |
153 | struct platform_device *pdev = to_platform_device(dev); | 152 | struct platform_device *pdev = to_platform_device(dev); |
154 | struct max8925_onkey_info *info = platform_get_drvdata(pdev); | 153 | struct max8925_onkey_info *info = platform_get_drvdata(pdev); |
@@ -161,7 +160,6 @@ static int max8925_onkey_resume(struct device *dev) | |||
161 | 160 | ||
162 | return 0; | 161 | return 0; |
163 | } | 162 | } |
164 | #endif | ||
165 | 163 | ||
166 | static SIMPLE_DEV_PM_OPS(max8925_onkey_pm_ops, max8925_onkey_suspend, max8925_onkey_resume); | 164 | static SIMPLE_DEV_PM_OPS(max8925_onkey_pm_ops, max8925_onkey_suspend, max8925_onkey_resume); |
167 | 165 | ||