From: Lars-Peter Clausen Date: Mon, 1 Nov 2021 10:27:34 +0000 (+0100) Subject: iio: mma8452: Use correct type for return variable in IRQ handler X-Git-Tag: v5.17-rc1~82^2~40^2~81 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb0469894ba788ffdc81097b7dea822432e479d9;p=thirdparty%2Fkernel%2Flinux.git iio: mma8452: Use correct type for return variable in IRQ handler The IRQ handler's return type is irqreturn_t. The mma8452 uses a variable to store the return value, but the variable is of type int. Change this to irqreturn_t. This makes it easier to verify that the code is correct. Signed-off-by: Lars-Peter Clausen Reviewed-by: Andy Shevchenko Link: https://lore.kernel.org/r/20211101102734.32291-1-lars@metafoo.de Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/accel/mma8452.c b/drivers/iio/accel/mma8452.c index 715b8138fb715..4ac4c06e97074 100644 --- a/drivers/iio/accel/mma8452.c +++ b/drivers/iio/accel/mma8452.c @@ -1053,7 +1053,7 @@ static irqreturn_t mma8452_interrupt(int irq, void *p) { struct iio_dev *indio_dev = p; struct mma8452_data *data = iio_priv(indio_dev); - int ret = IRQ_NONE; + irqreturn_t ret = IRQ_NONE; int src; src = i2c_smbus_read_byte_data(data->client, MMA8452_INT_SRC);