projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
122679a
)
iio: light: tsl2772: simplify code in write_event_config callback
author
Julien Stephan
<jstephan@baylibre.com>
Thu, 31 Oct 2024 15:26:58 +0000
(16:26 +0100)
committer
Jonathan Cameron
<Jonathan.Cameron@huawei.com>
Sun, 3 Nov 2024 20:33:43 +0000
(20:33 +0000)
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/20241031-iio-fix-write-event-config-signature-v2-3-2bcacbb517a2@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/light/tsl2772.c
patch
|
blob
|
history
diff --git
a/drivers/iio/light/tsl2772.c
b/drivers/iio/light/tsl2772.c
index
cab468a
..
26082f2
100644
(file)
--- a/
drivers/iio/light/tsl2772.c
+++ b/
drivers/iio/light/tsl2772.c
@@
-1086,9
+1086,9
@@
static int tsl2772_write_interrupt_config(struct iio_dev *indio_dev,
struct tsl2772_chip *chip = iio_priv(indio_dev);
if (chan->type == IIO_INTENSITY)
- chip->settings.als_interrupt_en = val
? true : false
;
+ chip->settings.als_interrupt_en = val;
else
- chip->settings.prox_interrupt_en = val
? true : false
;
+ chip->settings.prox_interrupt_en = val;
return tsl2772_invoke_change(indio_dev);
}