[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <aUQR_vBHQwg9CWFn@debian-BULLSEYE-live-builder-AMD64>
Date: Thu, 18 Dec 2025 11:38:54 -0300
From: Marcelo Schmitt <marcelo.schmitt1@...il.com>
To: Tomas Borquez <tomasborquez13@...il.com>
Cc: Jonathan Cameron <jic23@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Lars-Peter Clausen <lars@...afoo.de>,
Michael Hennerich <Michael.Hennerich@...log.com>,
David Lechner <dlechner@...libre.com>,
Nuno Sá <nuno.sa@...log.com>,
Andy Shevchenko <andy@...nel.org>, linux-kernel@...r.kernel.org,
linux-iio@...r.kernel.org, linux-staging@...ts.linux.dev
Subject: Re: [PATCH 3/5] staging: iio: ad9832: cleanup dev_err_probe()
On 12/15, Tomas Borquez wrote:
> Cleanup dev_err_probe() by keeping messages consistent and adding
> error message for clock acquisition failure.
This is also a clean-up patch while patch 2 is a driver update so I would
provide this patch (currently patch 3) before the patch updating to use guard().
>
> Signed-off-by: Tomas Borquez <tomasborquez13@...il.com>
> ---
> drivers/staging/iio/frequency/ad9832.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/iio/frequency/ad9832.c b/drivers/staging/iio/frequency/ad9832.c
> index f9ef3aede4..8d04f1b44f 100644
> --- a/drivers/staging/iio/frequency/ad9832.c
> +++ b/drivers/staging/iio/frequency/ad9832.c
> @@ -302,15 +302,15 @@ static int ad9832_probe(struct spi_device *spi)
>
> ret = devm_regulator_get_enable(&spi->dev, "avdd");
> if (ret)
> - return dev_err_probe(&spi->dev, ret, "failed to enable specified AVDD voltage\n");
> + return dev_err_probe(&spi->dev, ret, "failed to enable AVDD supply\n");
I'd break the lines and write the message in the line below for this and other
dev_err_probe() that exceed 80 columns. E.g.
return dev_err_probe(&spi->dev, ret,
"failed to enable AVDD supply\n");
Note this is just a personal preference of mine, not enforced code style, so
fine if you prefer keep it as it is.
>
> ret = devm_regulator_get_enable(&spi->dev, "dvdd");
> if (ret)
> - return dev_err_probe(&spi->dev, ret, "Failed to enable specified DVDD supply\n");
> + return dev_err_probe(&spi->dev, ret, "failed to enable DVDD supply\n");
>
> st->mclk = devm_clk_get_enabled(&spi->dev, "mclk");
> if (IS_ERR(st->mclk))
> - return PTR_ERR(st->mclk);
> + return dev_err_probe(&spi->dev, PTR_ERR(st->mclk), "failed to enable MCLK\n");
>
> st->spi = spi;
> mutex_init(&st->lock);
> --
> 2.43.0
>
>
Powered by blists - more mailing lists