From: Julien Stephan Date: Thu, 31 Oct 2024 15:27:09 +0000 (+0100) Subject: iio: light: apds9960: convert als_int and pxs_int to bool X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=6921a89dc18c2d6ca0e54335b494a39ecde155e7;p=users%2Fjedix%2Flinux-maple.git 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 Link: https://patch.msgid.link/20241031-iio-fix-write-event-config-signature-v2-14-2bcacbb517a2@baylibre.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/light/apds9960.c b/drivers/iio/light/apds9960.c index a7f0cc99f2366..7b3da88885693 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 */