summaryrefslogtreecommitdiff
path: root/drivers/input/misc/adxl34x-spi.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2021-10-13 05:37:44 +0300
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2021-10-13 05:48:52 +0300
commitaf98ff045f1e0bed4caa28741266430af9724eb2 (patch)
tree7ba18a9b48ff200678038c96a505e2a5b885cce6 /drivers/input/misc/adxl34x-spi.c
parentb415ed4f49b90655659479fa7c5ddaffe88e41b9 (diff)
downloadlinux-af98ff045f1e0bed4caa28741266430af9724eb2.tar.xz
Input: adxl34x - make adxl34x_remove() return void
Up to now adxl34x_remove() returns zero unconditionally. Make it return void instead which makes it easier to see in the callers that there is no error to handle. Also the return value of i2c and spi remove callbacks is ignored anyway. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20211012153945.2651412-6-u.kleine-koenig@pengutronix.de Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc/adxl34x-spi.c')
-rw-r--r--drivers/input/misc/adxl34x-spi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/input/misc/adxl34x-spi.c b/drivers/input/misc/adxl34x-spi.c
index df6afa455e46..6e51c9bc619f 100644
--- a/drivers/input/misc/adxl34x-spi.c
+++ b/drivers/input/misc/adxl34x-spi.c
@@ -91,7 +91,9 @@ static int adxl34x_spi_remove(struct spi_device *spi)
{
struct adxl34x *ac = spi_get_drvdata(spi);
- return adxl34x_remove(ac);
+ adxl34x_remove(ac);
+
+ return 0;
}
static int __maybe_unused adxl34x_spi_suspend(struct device *dev)