From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Cc: "Carsten Spieß" <mail@carsten-spiess.de>,
"Guenter Roeck" <linux@roeck-us.net>,
"Geert Uytterhoeven" <geert+renesas@glider.be>,
"Magnus Damm" <magnus.damm@gmail.com>
Subject: [PATCH v1 1/1] hwmon: (isl28022) Don't check for specific errors when parsing properties
Date: Thu, 19 Feb 2026 15:05:32 +0100 [thread overview]
Message-ID: <20260219140532.2259235-1-andriy.shevchenko@linux.intel.com> (raw)
Instead of checking for the specific error codes (that can be considered
a layering violation to some extent) check for the property existence first
and then either parse it, or apply a default value.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/hwmon/isl28022.c | 42 +++++++++++++++++++++++-----------------
1 file changed, 24 insertions(+), 18 deletions(-)
diff --git a/drivers/hwmon/isl28022.c b/drivers/hwmon/isl28022.c
index c2e559dde63f..c69ff4a46525 100644
--- a/drivers/hwmon/isl28022.c
+++ b/drivers/hwmon/isl28022.c
@@ -337,21 +337,28 @@ DEFINE_SHOW_ATTRIBUTE(shunt_voltage);
*/
static int isl28022_read_properties(struct device *dev, struct isl28022_data *data)
{
+ const char *propname;
u32 val;
int err;
- err = device_property_read_u32(dev, "shunt-resistor-micro-ohms", &val);
- if (err == -EINVAL)
+ propname = "shunt-resistor-micro-ohms";
+ if (device_property_present(dev, propname)) {
+ err = device_property_read_u32(dev, propname, &val);
+ if (err)
+ return err;
+ } else {
val = 10000;
- else if (err < 0)
- return err;
+ }
data->shunt = val;
- err = device_property_read_u32(dev, "renesas,shunt-range-microvolt", &val);
- if (err == -EINVAL)
+ propname = "renesas,shunt-range-microvolt";
+ if (device_property_present(dev, propname)) {
+ err = device_property_read_u32(dev, propname, &val);
+ if (err)
+ return err;
+ } else {
val = 320000;
- else if (err < 0)
- return err;
+ }
switch (val) {
case 40000:
@@ -375,20 +382,19 @@ static int isl28022_read_properties(struct device *dev, struct isl28022_data *da
goto shunt_invalid;
break;
default:
- return dev_err_probe(dev, -EINVAL,
- "renesas,shunt-range-microvolt invalid value %d\n",
- val);
+ return dev_err_probe(dev, -EINVAL, "%s invalid value %u\n", propname, val);
}
- err = device_property_read_u32(dev, "renesas,average-samples", &val);
- if (err == -EINVAL)
+ propname = "renesas,average-samples";
+ if (device_property_present(dev, propname)) {
+ err = device_property_read_u32(dev, propname, &val);
+ if (err)
+ return err;
+ } else {
val = 1;
- else if (err < 0)
- return err;
+ }
if (val > 128 || hweight32(val) != 1)
- return dev_err_probe(dev, -EINVAL,
- "renesas,average-samples invalid value %d\n",
- val);
+ return dev_err_probe(dev, -EINVAL, "%s invalid value %u\n", propname, val);
data->average = val;
--
2.50.1
next reply other threads:[~2026-02-19 14:06 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-19 14:05 Andy Shevchenko [this message]
2026-02-19 14:21 ` Geert Uytterhoeven
2026-02-19 14:30 ` Andy Shevchenko
2026-02-20 20:49 ` Guenter Roeck
2026-03-17 20:51 ` Andy Shevchenko
2026-03-17 21:09 ` Andy Shevchenko
2026-04-12 14:25 ` Guenter Roeck
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=20260219140532.2259235-1-andriy.shevchenko@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=geert+renesas@glider.be \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=magnus.damm@gmail.com \
--cc=mail@carsten-spiess.de \
/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
Powered by JetHome