Re: [PATCH v2 4/4] iio: light: ltr390: Add interrupt persistance support

From: Jonathan Cameron
Date: Sat Sep 14 2024 - 09:55:01 EST


On Tue, 10 Sep 2024 10:20:29 +0530
Abhash Jha <abhashkumarjha123@xxxxxxxxx> wrote:

> Added support to configure the threshold interrupt persistance value by
> providing IIO_EV_INFO_PERIOD attribute. The value written to the
> attribute should be in miliseconds and should be greater than the
> sampling rate of the sensor.
>
> Signed-off-by: Abhash Jha <abhashkumarjha123@xxxxxxxxx>
> ---
> drivers/iio/light/ltr390.c | 66 +++++++++++++++++++++++++++++++++++---
> 1 file changed, 62 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iio/light/ltr390.c b/drivers/iio/light/ltr390.c
> index 8a8a118ca..9706105c6 100644
> --- a/drivers/iio/light/ltr390.c
> +++ b/drivers/iio/light/ltr390.c
> @@ -40,6 +40,7 @@

>
> -static int ltr390_get_samp_freq(struct ltr390_data *data)
> +static int ltr390_get_samp_freq_or_period(struct ltr390_data *data, enum ltr390_meas_rate option)

Wrap this as the line is getting too long.

Otherwise LGTM

Thanks,

Jonathan