From: David Lechner <dlechner@baylibre.com>
To: Aldo Conte <aldocontelk@gmail.com>, jic23@kernel.org
Cc: ktsai@capellamicro.com, nuno.sa@analog.com, andy@kernel.org,
daniel.baluta@intel.com, linux-iio@vger.kernel.org,
linux-kernel@vger.kernel.org, skhan@linuxfoundation.org,
me@brighamcampbell.com, linux-kernel-mentees@lists.linux.dev
Subject: Re: [PATCH v2 2/2] iio: light: cm3323: use dev_err_probe() in probe path
Date: Sun, 5 Apr 2026 10:12:25 -0500 [thread overview]
Message-ID: <bb46e400-4d1f-475e-bf36-7035554b453a@baylibre.com> (raw)
In-Reply-To: <20260404205853.18559-3-aldocontelk@gmail.com>
On 4/4/26 3:58 PM, Aldo Conte wrote:
> Replace dev_err() calls with dev_err_probe() in cm3323_init() and
> cm3323_probe(). cm3323_init() is called by cm3323_probe(), so using
> dev_err_probe() ensures that deferred probing is handled
> correctly and simplifies error paths.
>
> Remove the redundant error message in cm3323_probe().
>
> Tested on a Raspberry Pi 3B using i2c-stub. The driver probes
> successfully and successfully read integration_time after this change.
>
> Suggested-by: Andy Shevchenko <andy@kernel.org>
> Signed-off-by: Aldo Conte <aldocontelk@gmail.com>
> ---
> Changes in v2:
> - Add struct device *dev local variable to shorten dev_err_probe()
> calls to one-liners (suggested by Andy Shevchenko)
>
> drivers/iio/light/cm3323.c | 18 +++++++-----------
> 1 file changed, 7 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/iio/light/cm3323.c b/drivers/iio/light/cm3323.c
> index 0fe61b8a7029..5b36fc265c6c 100644
> --- a/drivers/iio/light/cm3323.c
> +++ b/drivers/iio/light/cm3323.c
> @@ -80,22 +80,19 @@ static int cm3323_init(struct iio_dev *indio_dev)
> {
> int ret;
> struct cm3323_data *data = iio_priv(indio_dev);
> + struct device *dev = &data->client->dev;
>
> ret = i2c_smbus_read_word_data(data->client, CM3323_CMD_CONF);
> - if (ret < 0) {
> - dev_err(&data->client->dev, "Error reading reg_conf\n");
> - return ret;
> - }
> + if (ret < 0)
> + return dev_err_probe(dev, ret, "Error reading reg_conf\n");
>
> /* enable sensor and set auto force mode */
> ret &= ~(CM3323_CONF_SD_BIT | CM3323_CONF_AF_BIT);
> data->reg_conf = ret;
>
> ret = i2c_smbus_write_word_data(data->client, CM3323_CMD_CONF, data->reg_conf);
> - if (ret < 0) {
> - dev_err(&data->client->dev, "Error writing reg_conf\n");
> - return ret;
> - }
> + if (ret < 0)
> + return dev_err_probe(dev, ret, "Error writing reg_conf\n");
>
> return 0;
> }
> @@ -236,10 +233,9 @@ static int cm3323_probe(struct i2c_client *client)
> indio_dev->modes = INDIO_DIRECT_MODE;
>
> ret = cm3323_init(indio_dev);
> - if (ret < 0) {
> - dev_err(&client->dev, "cm3323 chip init failed\n");
> + if (ret < 0)
> return ret;
> - }
> +
>
checkpatch.pl should have warned about having to blank lines here
now. Prefer only one.
> ret = devm_add_action_or_reset(&client->dev, cm3323_disable, indio_dev);
> if (ret < 0)
next prev parent reply other threads:[~2026-04-05 15:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-04 20:58 [PATCH v2 0/2] iio: light: cm3323: fix and cleanup Aldo Conte
2026-04-04 20:58 ` [PATCH v2 1/2] iio: light: cm3323: fix reg_conf not being initialized correctly Aldo Conte
2026-04-04 20:58 ` [PATCH v2 2/2] iio: light: cm3323: use dev_err_probe() in probe path Aldo Conte
2026-04-05 15:12 ` David Lechner [this message]
2026-04-06 17:24 ` Andy Shevchenko
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=bb46e400-4d1f-475e-bf36-7035554b453a@baylibre.com \
--to=dlechner@baylibre.com \
--cc=aldocontelk@gmail.com \
--cc=andy@kernel.org \
--cc=daniel.baluta@intel.com \
--cc=jic23@kernel.org \
--cc=ktsai@capellamicro.com \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel-mentees@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=me@brighamcampbell.com \
--cc=nuno.sa@analog.com \
--cc=skhan@linuxfoundation.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