From: Salah Triki <salah.triki@gmail.com>
To: "Lars-Peter Clausen" <lars@metafoo.de>,
"Michael Hennerich" <Michael.Hennerich@analog.com>,
"Marcelo Schmitt" <marcelo.schmitt@analog.com>,
"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
Cc: salah.triki@gmail.com
Subject: [PATCH] iio: adc: ad4170-4: Use ERR_PTR() in ad4170_read_sample()
Date: Thu, 7 Aug 2025 08:50:27 +0100 [thread overview]
Message-ID: <aJRaw57_P8pRxRNN@pc> (raw)
Use ERR_PTR(ret) with %pe in ad4170_read_sample() to properly display
symbolic error codes (e.g. -ENOMEM) instead of raw integers (e.g. -12),
improving readability and debug clarity.
Signed-off-by: Salah Triki <salah.triki@gmail.com>
---
drivers/iio/adc/ad4170-4.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/iio/adc/ad4170-4.c b/drivers/iio/adc/ad4170-4.c
index 6cd84d6fb08b..6296b5dc930b 100644
--- a/drivers/iio/adc/ad4170-4.c
+++ b/drivers/iio/adc/ad4170-4.c
@@ -1253,11 +1253,11 @@ static int ad4170_read_sample(struct iio_dev *indio_dev,
ret = __ad4170_read_sample(indio_dev, chan, val);
if (ret) {
- dev_err(dev, "failed to read sample: %d\n", ret);
+ dev_err(dev, "failed to read sample: %pe\n", ERR_PTR(ret));
ret2 = ad4170_set_channel_enable(st, chan->address, false);
if (ret2)
- dev_err(dev, "failed to disable channel: %d\n", ret2);
+ dev_err(dev, "failed to disable channel: %pe\n", ERR_PTR(ret2));
return ret;
}
--
2.43.0
reply other threads:[~2025-08-07 7:50 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=aJRaw57_P8pRxRNN@pc \
--to=salah.triki@gmail.com \
--cc=Michael.Hennerich@analog.com \
--cc=andy@kernel.org \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo.schmitt@analog.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.