diff options
author | Julien Stephan <jstephan@baylibre.com> | 2024-10-31 16:27:09 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2024-11-03 20:33:44 +0000 |
commit | 6921a89dc18c2d6ca0e54335b494a39ecde155e7 (patch) | |
tree | adb63a3a7549bfcf55772dd0ae28edc7991eba41 /drivers/iio | |
parent | 86b8843ee2bb8038f3c648cd9e7f3b787fad3ea3 (diff) | |
download | linux-stable-6921a89dc18c2d6ca0e54335b494a39ecde155e7.tar.gz linux-stable-6921a89dc18c2d6ca0e54335b494a39ecde155e7.tar.bz2 linux-stable-6921a89dc18c2d6ca0e54335b494a39ecde155e7.zip |
iio: light: apds9960: convert als_int and pxs_int to bool
Since the write_event_config callback now uses a bool for the state
parameter, update type of als_int and pxs_int to bool.
Signed-off-by: Julien Stephan <jstephan@baylibre.com>
Link: https://patch.msgid.link/20241031-iio-fix-write-event-config-signature-v2-14-2bcacbb517a2@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/light/apds9960.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/light/apds9960.c b/drivers/iio/light/apds9960.c index a7f0cc99f236..7b3da8888569 100644 --- a/drivers/iio/light/apds9960.c +++ b/drivers/iio/light/apds9960.c @@ -133,8 +133,8 @@ struct apds9960_data { struct regmap_field *reg_enable_pxs; /* state */ - int als_int; - int pxs_int; + bool als_int; + bool pxs_int; int gesture_mode_running; /* gain values */ |