Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Gustavo Ueti Fukunaga <gustavofukunaga@usp.br>
Cc: caiodantas@usp.br, linux-iio@vger.kernel.org
Subject: Re: [PATCH] iio: adc: ti-adc161s626: make use of iio_device_claim_direct_scoped()
Date: Sun, 2 Jun 2024 14:09:40 +0100	[thread overview]
Message-ID: <20240602140940.7dc4fe94@jic23-huawei> (raw)
In-Reply-To: <20240527091942.53616-1-gustavofukunaga@usp.br>

On Mon, 27 May 2024 06:19:40 -0300
Gustavo Ueti Fukunaga <gustavofukunaga@usp.br> wrote:

> Make use of iio_device_claim_direct_scoped() to make error handling more
> natural and simplify code.
> 
> Co-developed-by: Caio Dantas Simão Ugêda <caiodantas@usp.br>
> Signed-off-by: Caio Dantas Simão Ugêda <caiodantas@usp.br>
> Signed-off-by: Gustavo Ueti Fukunaga <gustavofukunaga@usp.br>
Applied to the togreg branch of iio.git and initially pushed out as testing
for 0-day to poke at it and see what we missed.

Thanks,

Jonathan

> ---
>  drivers/iio/adc/ti-adc161s626.c | 18 +++++++-----------
>  1 file changed, 7 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/iio/adc/ti-adc161s626.c b/drivers/iio/adc/ti-adc161s626.c
> index b789891dc..f7c78d0dd 100644
> --- a/drivers/iio/adc/ti-adc161s626.c
> +++ b/drivers/iio/adc/ti-adc161s626.c
> @@ -137,17 +137,13 @@ static int ti_adc_read_raw(struct iio_dev *indio_dev,
>  
>  	switch (mask) {
>  	case IIO_CHAN_INFO_RAW:
> -		ret = iio_device_claim_direct_mode(indio_dev);
> -		if (ret)
> -			return ret;
> -
> -		ret = ti_adc_read_measurement(data, chan, val);
> -		iio_device_release_direct_mode(indio_dev);
> -
> -		if (ret)
> -			return ret;
> -
> -		return IIO_VAL_INT;
> +		iio_device_claim_direct_scoped(return -EBUSY, indio_dev) {
> +			ret = ti_adc_read_measurement(data, chan, val);
> +			if (ret)
> +				return ret;
> +			return IIO_VAL_INT;
> +		}
> +		unreachable();
>  	case IIO_CHAN_INFO_SCALE:
>  		ret = regulator_get_voltage(data->ref);
>  		if (ret < 0)


      reply	other threads:[~2024-06-02 13:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-27  9:19 [PATCH] iio: adc: ti-adc161s626: make use of iio_device_claim_direct_scoped() Gustavo Ueti Fukunaga
2024-06-02 13:09 ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240602140940.7dc4fe94@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=caiodantas@usp.br \
    --cc=gustavofukunaga@usp.br \
    --cc=linux-iio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox