Skip to content

Commit ef9d67f

Browse files
larsclausenjic23
authored andcommitted
iio: ltr501: Don't return error code in trigger handler
IIO trigger handlers need to return one of the irqreturn_t values. Returning an error code is not supported. The ltr501 interrupt handler gets this right for most error paths, but there is one case where it returns the error code. In addition for this particular case the trigger handler does not call `iio_trigger_notify_done()`. Which when not done keeps the triggered disabled forever. Modify the code so that the function returns a valid irqreturn_t value as well as calling `iio_trigger_notify_done()` on all exit paths. Fixes: 2690be9 ("iio: Add Lite-On ltr501 ambient light / proximity sensor driver") Signed-off-by: Lars-Peter Clausen <[email protected]> Link: https://lore.kernel.org/r/[email protected] Cc: <[email protected]> Signed-off-by: Jonathan Cameron <[email protected]>
1 parent 70c9774 commit ef9d67f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/light/ltr501.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ static irqreturn_t ltr501_trigger_handler(int irq, void *p)
12751275
ret = regmap_bulk_read(data->regmap, LTR501_ALS_DATA1,
12761276
als_buf, sizeof(als_buf));
12771277
if (ret < 0)
1278-
return ret;
1278+
goto done;
12791279
if (test_bit(0, indio_dev->active_scan_mask))
12801280
scan.channels[j++] = le16_to_cpu(als_buf[1]);
12811281
if (test_bit(1, indio_dev->active_scan_mask))

0 commit comments

Comments
 (0)