[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20260122191510.2aca6bef@jic23-huawei>
Date: Thu, 22 Jan 2026 19:15:10 +0000
From: Jonathan Cameron <jic23@...nel.org>
To: Kurt Borja <kuurtb@...il.com>
Cc: Andy Shevchenko <andriy.shevchenko@...el.com>, Lars-Peter Clausen
<lars@...afoo.de>, Michael Hennerich <Michael.Hennerich@...log.com>, Benson
Leung <bleung@...omium.org>, Antoniu Miclaus <antoniu.miclaus@...log.com>,
Gwendal Grignou <gwendal@...omium.org>, Shrikant Raskar
<raskar.shree97@...il.com>, Per-Daniel Olsson <perdaniel.olsson@...s.com>,
David Lechner <dlechner@...libre.com>, Nuno Sá
<nuno.sa@...log.com>, Andy Shevchenko <andy@...nel.org>, Guenter Roeck
<groeck@...omium.org>, Jonathan Cameron <Jonathan.Cameron@...wei.com>,
linux-iio@...r.kernel.org, linux-kernel@...r.kernel.org,
chrome-platform@...ts.linux.dev
Subject: Re: [PATCH v5 6/7] iio: health: max30102: Use IIO cleanup helpers
On Tue, 20 Jan 2026 01:20:46 -0500
Kurt Borja <kuurtb@...il.com> wrote:
> Use IIO_DEV_GUARD_CURRENT_MODE() cleanup helper to simplify and drop
> busy-waiting code in max30102_read_raw().
>
> Reviewed-by: David Lechner <dlechner@...libre.com>
> Reviewed-by: Nuno Sá <nuno.sa@...log.com>
> Signed-off-by: Kurt Borja <kuurtb@...il.com>
FWIW this and the next one trip up sparse as well :(
> ---
> drivers/iio/health/max30102.c | 33 +++++++++------------------------
> 1 file changed, 9 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c
> index 6918fcb5de2b..47da44efd68b 100644
> --- a/drivers/iio/health/max30102.c
> +++ b/drivers/iio/health/max30102.c
> @@ -467,44 +467,29 @@ static int max30102_read_raw(struct iio_dev *indio_dev,
> int *val, int *val2, long mask)
> {
> struct max30102_data *data = iio_priv(indio_dev);
> - int ret = -EINVAL;
> + int ret;
>
> switch (mask) {
> - case IIO_CHAN_INFO_RAW:
> + case IIO_CHAN_INFO_RAW: {
> /*
> * Temperature reading can only be acquired when not in
> * shutdown; leave shutdown briefly when buffer not running
> */
> -any_mode_retry:
> - if (!iio_device_try_claim_buffer_mode(indio_dev)) {
> - /*
> - * This one is a *bit* hacky. If we cannot claim buffer
> - * mode, then try direct mode so that we make sure
> - * things cannot concurrently change. And we just keep
> - * trying until we get one of the modes...
> - */
> - if (!iio_device_claim_direct(indio_dev))
> - goto any_mode_retry;
> + IIO_DEV_GUARD_CURRENT_MODE(indio_dev);
>
> - ret = max30102_get_temp(data, val, true);
> - iio_device_release_direct(indio_dev);
> - } else {
> - ret = max30102_get_temp(data, val, false);
> - iio_device_release_buffer_mode(indio_dev);
> - }
> + ret = max30102_get_temp(data, val, !iio_buffer_enabled(indio_dev));
> if (ret)
> return ret;
>
> - ret = IIO_VAL_INT;
> - break;
> + return IIO_VAL_INT;
> + }
> case IIO_CHAN_INFO_SCALE:
> *val = 1000; /* 62.5 */
> *val2 = 16;
> - ret = IIO_VAL_FRACTIONAL;
> - break;
> + return IIO_VAL_FRACTIONAL;
> + default:
> + return -EINVAL;
> }
> -
> - return ret;
> }
>
> static const struct iio_info max30102_info = {
>
Powered by blists - more mailing lists