* [PATCH next] io: proximity: vl53l0x-i2c: Fix error code in probe()
@ 2025-08-19 9:39 Dan Carpenter
2025-08-19 10:18 ` Andy Shevchenko
0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2025-08-19 9:39 UTC (permalink / raw)
To: Waqar Hameed
Cc: Song Qiang, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, linux-iio, linux-kernel, kernel-janitors
Commit 65e8202f0322 ("iio: Remove error prints for
devm_add_action_or_reset()") accidentally introduce a bug where we
returned "ret" but the error code was stored in "error" if
devm_add_action_or_reset() failed. Using two variables to store error
codes is unnecessary and confusing. Delete the "error" variable and use
"ret" everywhere instead.
Fixes: 65e8202f0322 ("iio: Remove error prints for devm_add_action_or_reset()")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
---
drivers/iio/proximity/vl53l0x-i2c.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/iio/proximity/vl53l0x-i2c.c b/drivers/iio/proximity/vl53l0x-i2c.c
index 696340ec027a..ad3e46d47fa8 100644
--- a/drivers/iio/proximity/vl53l0x-i2c.c
+++ b/drivers/iio/proximity/vl53l0x-i2c.c
@@ -311,7 +311,6 @@ static int vl53l0x_probe(struct i2c_client *client)
{
struct vl53l0x_data *data;
struct iio_dev *indio_dev;
- int error;
int ret;
indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
@@ -344,13 +343,13 @@ static int vl53l0x_probe(struct i2c_client *client)
return dev_err_probe(&client->dev, PTR_ERR(data->reset_gpio),
"Cannot get reset GPIO\n");
- error = vl53l0x_power_on(data);
- if (error)
- return dev_err_probe(&client->dev, error,
+ ret = vl53l0x_power_on(data);
+ if (ret)
+ return dev_err_probe(&client->dev, ret,
"Failed to power on the chip\n");
- error = devm_add_action_or_reset(&client->dev, vl53l0x_power_off, data);
- if (error)
+ ret = devm_add_action_or_reset(&client->dev, vl53l0x_power_off, data);
+ if (ret)
return ret;
indio_dev->name = "vl53l0x";
--
2.47.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH next] io: proximity: vl53l0x-i2c: Fix error code in probe()
2025-08-19 9:39 [PATCH next] io: proximity: vl53l0x-i2c: Fix error code in probe() Dan Carpenter
@ 2025-08-19 10:18 ` Andy Shevchenko
2025-08-19 15:02 ` Dan Carpenter
0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2025-08-19 10:18 UTC (permalink / raw)
To: Dan Carpenter
Cc: Waqar Hameed, Song Qiang, Jonathan Cameron, David Lechner,
Nuno Sá, Andy Shevchenko, linux-iio, linux-kernel,
kernel-janitors
On Tue, Aug 19, 2025 at 12:39 PM Dan Carpenter <dan.carpenter@linaro.org> wrote:
>
> Commit 65e8202f0322 ("iio: Remove error prints for
> devm_add_action_or_reset()") accidentally introduce a bug where we
introduced
> returned "ret" but the error code was stored in "error" if
> devm_add_action_or_reset() failed. Using two variables to store error
> codes is unnecessary and confusing. Delete the "error" variable and use
> "ret" everywhere instead.
Agree, this is a good catch!
But please, fix the Subject to start with "iio:".
With the above comments being addressed
Reviewed-by: Andy Shevchenko <andy@kernel.org>
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH next] io: proximity: vl53l0x-i2c: Fix error code in probe()
2025-08-19 10:18 ` Andy Shevchenko
@ 2025-08-19 15:02 ` Dan Carpenter
0 siblings, 0 replies; 3+ messages in thread
From: Dan Carpenter @ 2025-08-19 15:02 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Waqar Hameed, Song Qiang, Jonathan Cameron, David Lechner,
Nuno Sá, Andy Shevchenko, linux-iio, linux-kernel,
kernel-janitors
On Tue, Aug 19, 2025 at 01:18:35PM +0300, Andy Shevchenko wrote:
> On Tue, Aug 19, 2025 at 12:39 PM Dan Carpenter <dan.carpenter@linaro.org> wrote:
> >
> > Commit 65e8202f0322 ("iio: Remove error prints for
> > devm_add_action_or_reset()") accidentally introduce a bug where we
>
> introduced
>
> > returned "ret" but the error code was stored in "error" if
> > devm_add_action_or_reset() failed. Using two variables to store error
> > codes is unnecessary and confusing. Delete the "error" variable and use
> > "ret" everywhere instead.
>
> Agree, this is a good catch!
> But please, fix the Subject to start with "iio:".
>
> With the above comments being addressed
> Reviewed-by: Andy Shevchenko <andy@kernel.org>
Yeah. :( Thanks. Will do.
regards,
dan carpenter
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-08-19 15:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-19 9:39 [PATCH next] io: proximity: vl53l0x-i2c: Fix error code in probe() Dan Carpenter
2025-08-19 10:18 ` Andy Shevchenko
2025-08-19 15:02 ` Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).