diff options
author | Julien Stephan <jstephan@baylibre.com> | 2024-10-24 11:11:26 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2024-11-01 14:54:45 +0000 |
commit | d567ff3603cf256e3434cf325302da5ddf56c69e (patch) | |
tree | aa7115a5d74364bbd00b7e3a14eca6a118eb5c8d | |
parent | c9fd4cc90c0f8fb006797a59fecdcd69ce7211e3 (diff) | |
download | linux-stable-d567ff3603cf256e3434cf325302da5ddf56c69e.tar.gz linux-stable-d567ff3603cf256e3434cf325302da5ddf56c69e.tar.bz2 linux-stable-d567ff3603cf256e3434cf325302da5ddf56c69e.zip |
iio: light: veml6030: simplify code in write_event_config callback
iio_ev_state_store is actually using kstrtobool to check user
input, then gives the converted boolean value to the write_event_config
callback.
Remove useless code in write_event_config callback.
Signed-off-by: Julien Stephan <jstephan@baylibre.com>
Link: https://patch.msgid.link/20241024-iio-fix-write-event-config-signature-v1-4-7d29e5a31b00@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
-rw-r--r-- | drivers/iio/light/veml6030.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/iio/light/veml6030.c b/drivers/iio/light/veml6030.c index d6f3b104b0e6..95751c101590 100644 --- a/drivers/iio/light/veml6030.c +++ b/drivers/iio/light/veml6030.c @@ -826,9 +826,6 @@ static int veml6030_write_interrupt_config(struct iio_dev *indio_dev, int ret; struct veml6030_data *data = iio_priv(indio_dev); - if (state < 0 || state > 1) - return -EINVAL; - ret = veml6030_als_shut_down(data); if (ret < 0) { dev_err(&data->client->dev, |