public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
From: Petre Rodan <petre.rodan@subdimension.ro>
To: Antoniu Miclaus <antoniu.miclaus@analog.com>
Cc: Jonathan Cameron <jic23@kernel.org>,
	David Lechner <dlechner@baylibre.com>,
	Nuno S?? <nuno.sa@analog.com>, Andy Shevchenko <andy@kernel.org>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] iio: pressure: hsc030pa: Improve i2c_transfer return value handling
Date: Fri, 30 Jan 2026 13:46:17 +0200	[thread overview]
Message-ID: <aXyaCTZfJ8WC-rcq@sunspire.home.arpa> (raw)
In-Reply-To: <20260129181452.57628-1-antoniu.miclaus@analog.com>

[-- Attachment #1: Type: text/plain, Size: 1634 bytes --]


Hello Antoniu,

On Thu, Jan 29, 2026 at 08:14:52PM +0200, Antoniu Miclaus wrote:
> The i2c_transfer() function returns the number of messages
> successfully transferred. The function sends 1 message but checks
> for ret == 2, which can never be true.
> 
> In practice this has no impact since the caller checks ret < 0,
> and the erroneous return value of 1 is not treated as an error.
> 
> Improve the return value handling to properly distinguish between
> I2C errors and unexpected transfer counts.

thank you for the patch, much appreciated.

Tested-by: Petre Rodan <petre.rodan@subdimension.ro>

best regards,
peter

> 
> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
> ---
> v2:
>  - Changed subject from 'Fix' to 'Improve'
>  - Clarified that the bug has no practical impact
>  - Used explicit if/return pattern instead of ternary
>  - Dropped Fixes tag
> 
>  drivers/iio/pressure/hsc030pa_i2c.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/iio/pressure/hsc030pa_i2c.c b/drivers/iio/pressure/hsc030pa_i2c.c
> index a34ef4653f34..3500bda03d75 100644
> --- a/drivers/iio/pressure/hsc030pa_i2c.c
> +++ b/drivers/iio/pressure/hsc030pa_i2c.c
> @@ -34,8 +34,13 @@ static int hsc_i2c_recv(struct hsc_data *data)
>  	msg.buf = data->buffer;
>  
>  	ret = i2c_transfer(client->adapter, &msg, 1);
> +	if (ret < 0)
> +		return ret;
>  
> -	return (ret == 2) ? 0 : ret;
> +	if (ret != 1)
> +		return -EIO;
> +
> +	return 0;
>  }
>  
>  static int hsc_i2c_probe(struct i2c_client *client)
> -- 
> 2.43.0
> 

-- 
petre rodan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 870 bytes --]

  reply	other threads:[~2026-01-30 11:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-29 18:14 [PATCH v2] iio: pressure: hsc030pa: Improve i2c_transfer return value handling Antoniu Miclaus
2026-01-30 11:46 ` Petre Rodan [this message]
2026-01-31 17:14   ` Jonathan Cameron

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=aXyaCTZfJ8WC-rcq@sunspire.home.arpa \
    --to=petre.rodan@subdimension.ro \
    --cc=andy@kernel.org \
    --cc=antoniu.miclaus@analog.com \
    --cc=dlechner@baylibre.com \
    --cc=jic23@kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nuno.sa@analog.com \
    /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