mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging:iio:adt7310: Do not return error code in interrupt handler
The interrupt handler should only ever return one of the three irqreturn_t constants and not an error code. Also make sure to always call iio_trigger_notify_done before leaving the trigger handler. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
abad65cbb2
commit
a4eef3057d
1 changed files with 3 additions and 1 deletions
|
@ -397,7 +397,7 @@ static irqreturn_t adt7310_event_handler(int irq, void *private)
|
||||||
|
|
||||||
ret = adt7310_spi_read_byte(chip, ADT7310_STATUS, &status);
|
ret = adt7310_spi_read_byte(chip, ADT7310_STATUS, &status);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
goto done;
|
||||||
|
|
||||||
if (status & ADT7310_STAT_T_HIGH)
|
if (status & ADT7310_STAT_T_HIGH)
|
||||||
iio_push_event(indio_dev,
|
iio_push_event(indio_dev,
|
||||||
|
@ -417,6 +417,8 @@ static irqreturn_t adt7310_event_handler(int irq, void *private)
|
||||||
IIO_EV_TYPE_THRESH,
|
IIO_EV_TYPE_THRESH,
|
||||||
IIO_EV_DIR_RISING),
|
IIO_EV_DIR_RISING),
|
||||||
timestamp);
|
timestamp);
|
||||||
|
|
||||||
|
done:
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue