[PATCH v4 2/4] hwmon: (gpd-fan): Initialize EC before registering hwmon device

From: Pei Xiao

Date: Tue Jun 09 2026 - 21:53:44 EST


Move the gpd_init_ec() call to before devm_hwmon_device_register_with_info
in the probe function. With the previous ordering the hwmon device was
registered and exposed to userspace before the EC initialization
completes, creating a window where sysfs reads could return invalid values.

Some buggy firmware won't initialize EC properly on boot. Before its
initialization, reading RPM will always return 0, and writing PWM will have
no effect. So move gpd_init_ec to before hwmon device register.

Fixes: 0ab88e239439 ("hwmon: add GPD devices sensor driver")
Signed-off-by: Pei Xiao <xiaopei01@xxxxxxxxxx>
---
changes in v4:
No changes

changes in v3:
1.Add v3 tag

changes in v2:
1.gpd_init_ec needed before hwmon registration, as separate bug fix
---
drivers/hwmon/gpd-fan.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/hwmon/gpd-fan.c b/drivers/hwmon/gpd-fan.c
index 7284babd4f5c..745b3fb9e3a4 100644
--- a/drivers/hwmon/gpd-fan.c
+++ b/drivers/hwmon/gpd-fan.c
@@ -643,6 +643,7 @@ static int gpd_fan_probe(struct platform_device *pdev)

dev_set_drvdata(dev, data);

+ gpd_init_ec(data);
hwdev = devm_hwmon_device_register_with_info(dev,
DRIVER_NAME,
data,
@@ -651,9 +652,6 @@ static int gpd_fan_probe(struct platform_device *pdev)
if (IS_ERR(hwdev))
return dev_err_probe(dev, PTR_ERR(hwdev),
"Failed to register hwmon device\n");
-
- gpd_init_ec(data);
-
return 0;
}

--
2.25.1