diff options
Diffstat (limited to 'drivers/input/misc/gp2ap002a00f.c')
-rw-r--r-- | drivers/input/misc/gp2ap002a00f.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/input/misc/gp2ap002a00f.c b/drivers/input/misc/gp2ap002a00f.c index de21e317da32..0ac176d66a6f 100644 --- a/drivers/input/misc/gp2ap002a00f.c +++ b/drivers/input/misc/gp2ap002a00f.c | |||
@@ -225,8 +225,7 @@ static int gp2a_remove(struct i2c_client *client) | |||
225 | return 0; | 225 | return 0; |
226 | } | 226 | } |
227 | 227 | ||
228 | #ifdef CONFIG_PM_SLEEP | 228 | static int __maybe_unused gp2a_suspend(struct device *dev) |
229 | static int gp2a_suspend(struct device *dev) | ||
230 | { | 229 | { |
231 | struct i2c_client *client = to_i2c_client(dev); | 230 | struct i2c_client *client = to_i2c_client(dev); |
232 | struct gp2a_data *dt = i2c_get_clientdata(client); | 231 | struct gp2a_data *dt = i2c_get_clientdata(client); |
@@ -244,7 +243,7 @@ static int gp2a_suspend(struct device *dev) | |||
244 | return retval; | 243 | return retval; |
245 | } | 244 | } |
246 | 245 | ||
247 | static int gp2a_resume(struct device *dev) | 246 | static int __maybe_unused gp2a_resume(struct device *dev) |
248 | { | 247 | { |
249 | struct i2c_client *client = to_i2c_client(dev); | 248 | struct i2c_client *client = to_i2c_client(dev); |
250 | struct gp2a_data *dt = i2c_get_clientdata(client); | 249 | struct gp2a_data *dt = i2c_get_clientdata(client); |
@@ -261,7 +260,6 @@ static int gp2a_resume(struct device *dev) | |||
261 | 260 | ||
262 | return retval; | 261 | return retval; |
263 | } | 262 | } |
264 | #endif | ||
265 | 263 | ||
266 | static SIMPLE_DEV_PM_OPS(gp2a_pm, gp2a_suspend, gp2a_resume); | 264 | static SIMPLE_DEV_PM_OPS(gp2a_pm, gp2a_suspend, gp2a_resume); |
267 | 265 | ||