diff mbox series

hwmon: (acpi_power_meter) Fix a check for the return value of read_domain_devices().

Message ID 20250115073532.3211000-1-fj1078ii@aa.jp.fujitsu.com (mailing list archive)
State Accepted
Headers show
Series hwmon: (acpi_power_meter) Fix a check for the return value of read_domain_devices(). | expand

Commit Message

Kazuhiro Abe Jan. 15, 2025, 7:35 a.m. UTC
After commit fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load
module on platform without _PMD method"),
the acpi_power_meter driver fails to load if the platform has _PMD method.

To address this, add a check for successful read_domain_devices().
Tested on Nvidia Grace machine.

Fixes: fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load module on platform without _PMD method")
Signed-off-by: Kazuhiro Abe <fj1078ii@aa.jp.fujitsu.com>
---
 drivers/hwmon/acpi_power_meter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Guenter Roeck Jan. 15, 2025, 2:20 p.m. UTC | #1
On Wed, Jan 15, 2025 at 07:35:32AM +0000, Kazuhiro Abe wrote:
> After commit fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load
> module on platform without _PMD method"),
> the acpi_power_meter driver fails to load if the platform has _PMD method.
> 
> To address this, add a check for successful read_domain_devices().
> Tested on Nvidia Grace machine.
> 
> Fixes: fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load module on platform without _PMD method")
> Signed-off-by: Kazuhiro Abe <fj1078ii@aa.jp.fujitsu.com>

Checkpatch says:

CHECK: Unnecessary parentheses around 'res != 0'
#108: FILE: drivers/hwmon/acpi_power_meter.c:685:
+	if ((res != 0) && (res != -ENODEV))

No need to resend, I'll fix that up while applying, but please keep it in mind
for the future.

Guenter

> ---
>  drivers/hwmon/acpi_power_meter.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hwmon/acpi_power_meter.c b/drivers/hwmon/acpi_power_meter.c
> index 2f1c9d97ad21..dbf2c606fe15 100644
> --- a/drivers/hwmon/acpi_power_meter.c
> +++ b/drivers/hwmon/acpi_power_meter.c
> @@ -682,7 +682,7 @@ static int setup_attrs(struct acpi_power_meter_resource *resource)
>  
>  	/* _PMD method is optional. */
>  	res = read_domain_devices(resource);
> -	if (res != -ENODEV)
> +	if ((res != 0) && (res != -ENODEV))
>  		return res;
>  
>  	if (resource->caps.flags & POWER_METER_CAN_MEASURE) {
Kazuhiro Abe (Fujitsu) Jan. 16, 2025, 2:18 a.m. UTC | #2
Hi, Guenter

Thanks for the comment.

> On Wed, Jan 15, 2025 at 07:35:32AM +0000, Kazuhiro Abe wrote:
> > After commit fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load
> > module on platform without _PMD method"), the acpi_power_meter driver
> > fails to load if the platform has _PMD method.
> >
> > To address this, add a check for successful read_domain_devices().
> > Tested on Nvidia Grace machine.
> >
> > Fixes: fabb1f813ec0 ("hwmon: (acpi_power_meter) Fix fail to load
> > module on platform without _PMD method")
> > Signed-off-by: Kazuhiro Abe <fj1078ii@aa.jp.fujitsu.com>
> 
> Checkpatch says:
> 
> CHECK: Unnecessary parentheses around 'res != 0'
> #108: FILE: drivers/hwmon/acpi_power_meter.c:685:
> +	if ((res != 0) && (res != -ENODEV))
> 
> No need to resend, I'll fix that up while applying, but please keep it in mind for the
> future.

I will keep it in mind for the future, Thanks for review.

Best Regards,
Kazuhiro Abe

> 
> Guenter
>
> > ---
> >  drivers/hwmon/acpi_power_meter.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/hwmon/acpi_power_meter.c
> > b/drivers/hwmon/acpi_power_meter.c
> > index 2f1c9d97ad21..dbf2c606fe15 100644
> > --- a/drivers/hwmon/acpi_power_meter.c
> > +++ b/drivers/hwmon/acpi_power_meter.c
> > @@ -682,7 +682,7 @@ static int setup_attrs(struct
> > acpi_power_meter_resource *resource)
> >
> >  	/* _PMD method is optional. */
> >  	res = read_domain_devices(resource);
> > -	if (res != -ENODEV)
> > +	if ((res != 0) && (res != -ENODEV))
> >  		return res;
> >
> >  	if (resource->caps.flags & POWER_METER_CAN_MEASURE) {
diff mbox series

Patch

diff --git a/drivers/hwmon/acpi_power_meter.c b/drivers/hwmon/acpi_power_meter.c
index 2f1c9d97ad21..dbf2c606fe15 100644
--- a/drivers/hwmon/acpi_power_meter.c
+++ b/drivers/hwmon/acpi_power_meter.c
@@ -682,7 +682,7 @@  static int setup_attrs(struct acpi_power_meter_resource *resource)
 
 	/* _PMD method is optional. */
 	res = read_domain_devices(resource);
-	if (res != -ENODEV)
+	if ((res != 0) && (res != -ENODEV))
 		return res;
 
 	if (resource->caps.flags & POWER_METER_CAN_MEASURE) {