diff options
Diffstat (limited to 'drivers/input/misc/adxl34x-spi.c')
-rw-r--r-- | drivers/input/misc/adxl34x-spi.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/input/misc/adxl34x-spi.c b/drivers/input/misc/adxl34x-spi.c index 76dc0679d3b1..da6e76b58dab 100644 --- a/drivers/input/misc/adxl34x-spi.c +++ b/drivers/input/misc/adxl34x-spi.c | |||
@@ -94,8 +94,7 @@ static int adxl34x_spi_remove(struct spi_device *spi) | |||
94 | return adxl34x_remove(ac); | 94 | return adxl34x_remove(ac); |
95 | } | 95 | } |
96 | 96 | ||
97 | #ifdef CONFIG_PM_SLEEP | 97 | static int __maybe_unused adxl34x_spi_suspend(struct device *dev) |
98 | static int adxl34x_spi_suspend(struct device *dev) | ||
99 | { | 98 | { |
100 | struct spi_device *spi = to_spi_device(dev); | 99 | struct spi_device *spi = to_spi_device(dev); |
101 | struct adxl34x *ac = spi_get_drvdata(spi); | 100 | struct adxl34x *ac = spi_get_drvdata(spi); |
@@ -105,7 +104,7 @@ static int adxl34x_spi_suspend(struct device *dev) | |||
105 | return 0; | 104 | return 0; |
106 | } | 105 | } |
107 | 106 | ||
108 | static int adxl34x_spi_resume(struct device *dev) | 107 | static int __maybe_unused adxl34x_spi_resume(struct device *dev) |
109 | { | 108 | { |
110 | struct spi_device *spi = to_spi_device(dev); | 109 | struct spi_device *spi = to_spi_device(dev); |
111 | struct adxl34x *ac = spi_get_drvdata(spi); | 110 | struct adxl34x *ac = spi_get_drvdata(spi); |
@@ -114,7 +113,6 @@ static int adxl34x_spi_resume(struct device *dev) | |||
114 | 113 | ||
115 | return 0; | 114 | return 0; |
116 | } | 115 | } |
117 | #endif | ||
118 | 116 | ||
119 | static SIMPLE_DEV_PM_OPS(adxl34x_spi_pm, adxl34x_spi_suspend, | 117 | static SIMPLE_DEV_PM_OPS(adxl34x_spi_pm, adxl34x_spi_suspend, |
120 | adxl34x_spi_resume); | 118 | adxl34x_spi_resume); |