Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: Antoniu Miclaus <antoniu.miclaus@analog.com>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Michael Hennerich <Michael.Hennerich@analog.com>,
	linux-iio@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] iio: frequency: admv1013: propagate errors from regulator_get_voltage()
Date: Sat, 22 Jul 2023 17:34:33 +0100	[thread overview]
Message-ID: <20230722173433.2174734f@jic23-huawei> (raw)
In-Reply-To: <ce75aac3-2aba-4435-8419-02e59fdd862b@moroto.mountain>

On Tue, 18 Jul 2023 10:02:18 +0300
Dan Carpenter <dan.carpenter@linaro.org> wrote:

> The regulator_get_voltage() function returns negative error codes.
> This function saves it to an unsigned int and then does some range
> checking and, since the error code falls outside the correct range,
> it returns -EINVAL.
> 
> Beyond the messiness, this is bad because the regulator_get_voltage()
> function can return -EPROBE_DEFER and it's important to propagate that
> back properly so it can be handled.
> 
> Fixes: da35a7b526d9 ("iio: frequency: admv1013: add support for ADMV1013")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Applied to the fixes-togreg branch of iio.git and marked for stable.

Thanks,

Jonathan

> ---
>  drivers/iio/frequency/admv1013.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/frequency/admv1013.c b/drivers/iio/frequency/admv1013.c
> index 9bf8337806fc..8c8e0bbfc99f 100644
> --- a/drivers/iio/frequency/admv1013.c
> +++ b/drivers/iio/frequency/admv1013.c
> @@ -344,9 +344,12 @@ static int admv1013_update_quad_filters(struct admv1013_state *st)
>  
>  static int admv1013_update_mixer_vgate(struct admv1013_state *st)
>  {
> -	unsigned int vcm, mixer_vgate;
> +	unsigned int mixer_vgate;
> +	int vcm;
>  
>  	vcm = regulator_get_voltage(st->reg);
> +	if (vcm < 0)
> +		return vcm;
>  
>  	if (vcm < 1800000)
>  		mixer_vgate = (2389 * vcm / 1000000 + 8100) / 100;


      reply	other threads:[~2023-07-22 16:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-18  7:02 [PATCH] iio: frequency: admv1013: propagate errors from regulator_get_voltage() Dan Carpenter
2023-07-22 16:34 ` 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=20230722173433.2174734f@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=Michael.Hennerich@analog.com \
    --cc=antoniu.miclaus@analog.com \
    --cc=dan.carpenter@linaro.org \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=lars@metafoo.de \
    --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