public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Antoniu Miclaus <antoniu.miclaus@analog.com>
Cc: "Jorge Marques" <jorge.marques@analog.com>,
	"Lars-Peter Clausen" <lars@metafoo.de>,
	"Michael Hennerich" <Michael.Hennerich@analog.com>,
	"David Lechner" <dlechner@baylibre.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Marcelo Schmitt" <marcelo.schmitt1@gmail.com>,
	"Renato Lui Geh" <renatogeh@gmail.com>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 00/13] iio: adc: use dev_err_probe in probe paths
Date: Sun, 12 Apr 2026 20:02:08 +0100	[thread overview]
Message-ID: <20260412200208.3a53429f@jic23-huawei> (raw)
In-Reply-To: <20260330111856.121589-1-antoniu.miclaus@analog.com>

On Mon, 30 Mar 2026 14:18:43 +0300
Antoniu Miclaus <antoniu.miclaus@analog.com> wrote:

> This series converts dev_err() calls to dev_err_probe() in the probe
> paths of various IIO ADC drivers. This ensures proper handling of
> deferred probing and simplifies error handling.
> 
> Where needed, a local struct device pointer is introduced first to
> reduce repeated &spi->dev dereferences throughout the probe function.
> 
> Drivers addressed:
>   - ad7949, ad7780, ad7793, ad7292, ad7791, ad7280a, ad7768-1,
>     ad9467, ad4062

Applied with the minor tweak of adding () to dev_err_probe in the
patch titles.

Thanks,

Jonathan

> 
> Antoniu Miclaus (13):
>   iio: adc: ad7949: use dev_err_probe
>   iio: adc: ad7780: add dev variable
>   iio: adc: ad7780: use dev_err_probe
>   iio: adc: ad7793: add dev variable
>   iio: adc: ad7793: use dev_err_probe
>   iio: adc: ad7292: add dev variable
>   iio: adc: ad7292: use dev_err_probe
>   iio: adc: ad7791: add dev variable
>   iio: adc: ad7791: use dev_err_probe
>   iio: adc: ad7280a: use dev_err_probe
>   iio: adc: ad7768-1: use dev_err_probe
>   iio: adc: ad9467: use dev_err_probe
>   iio: adc: ad4062: use dev_err_probe
> 
>  drivers/iio/adc/ad4062.c   |  7 +++---
>  drivers/iio/adc/ad7280a.c  |  4 ++--
>  drivers/iio/adc/ad7292.c   | 16 ++++++-------
>  drivers/iio/adc/ad7768-1.c |  6 ++---
>  drivers/iio/adc/ad7780.c   | 46 ++++++++++++++++----------------------
>  drivers/iio/adc/ad7791.c   | 19 ++++++++--------
>  drivers/iio/adc/ad7793.c   | 30 +++++++++++--------------
>  drivers/iio/adc/ad7949.c   | 25 ++++++++-------------
>  drivers/iio/adc/ad9467.c   |  9 ++++----
>  9 files changed, 69 insertions(+), 93 deletions(-)
> 


      parent reply	other threads:[~2026-04-12 19:02 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-30 11:18 [PATCH 00/13] iio: adc: use dev_err_probe in probe paths Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 01/13] iio: adc: ad7949: use dev_err_probe Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 02/13] iio: adc: ad7780: add dev variable Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 03/13] iio: adc: ad7780: use dev_err_probe Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 04/13] iio: adc: ad7793: add dev variable Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 05/13] iio: adc: ad7793: use dev_err_probe Antoniu Miclaus
2026-04-12 18:58   ` Jonathan Cameron
2026-03-30 11:18 ` [PATCH 06/13] iio: adc: ad7292: add dev variable Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 07/13] iio: adc: ad7292: use dev_err_probe Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 08/13] iio: adc: ad7791: add dev variable Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 09/13] iio: adc: ad7791: use dev_err_probe Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 10/13] iio: adc: ad7280a: " Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 11/13] iio: adc: ad7768-1: " Antoniu Miclaus
2026-03-30 11:18 ` [PATCH 12/13] iio: adc: ad9467: " Antoniu Miclaus
2026-03-30 12:02   ` Tomas Melin
2026-03-30 11:18 ` [PATCH 13/13] iio: adc: ad4062: " Antoniu Miclaus
2026-04-12 19:02 ` 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=20260412200208.3a53429f@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=Michael.Hennerich@analog.com \
    --cc=antoniu.miclaus@analog.com \
    --cc=dlechner@baylibre.com \
    --cc=jorge.marques@analog.com \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.schmitt1@gmail.com \
    --cc=nuno.sa@analog.com \
    --cc=renatogeh@gmail.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