mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 23:22:31 +02:00
iio: light: apds9306: simplifies if branch in apds9306_write_event_config
Simplifies the regmap_wite if branch in apds9306_write_event_config. Signed-off-by: Julien Stephan <jstephan@baylibre.com> Link: https://patch.msgid.link/20241031-iio-fix-write-event-config-signature-v2-13-2bcacbb517a2@baylibre.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
ad531aa484
commit
86b8843ee2
|
|
@ -1125,10 +1125,7 @@ static int apds9306_write_event_config(struct iio_dev *indio_dev,
|
|||
}
|
||||
}
|
||||
case IIO_EV_TYPE_THRESH_ADAPTIVE:
|
||||
if (state)
|
||||
return regmap_field_write(rf->int_thresh_var_en, 1);
|
||||
else
|
||||
return regmap_field_write(rf->int_thresh_var_en, 0);
|
||||
return regmap_field_write(rf->int_thresh_var_en, state);
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user