diff options
| author | Stefan Wahren <[email protected]> | 2019-04-03 12:48:33 +0000 |
|---|---|---|
| committer | Guenter Roeck <[email protected]> | 2019-04-16 00:19:23 +0000 |
| commit | 53f1647da3e8fb3e89066798f0fdc045064d353d (patch) | |
| tree | 62285a995d270583d039e90846832f455014bfcf /drivers/hwmon/pwm-fan.c | |
| parent | Linux 5.1-rc4 (diff) | |
| download | kernel-53f1647da3e8fb3e89066798f0fdc045064d353d.tar.gz kernel-53f1647da3e8fb3e89066798f0fdc045064d353d.zip | |
hwmon: (pwm-fan) Disable PWM if fetching cooling data fails
In case pwm_fan_of_get_cooling_data() fails we should disable the PWM
just like in the other error cases.
Fixes: 2e5219c77183 ("hwmon: (pwm-fan) Read PWM FAN configuration from device tree")
Cc: <[email protected]> # 4.14+
Reported-by: Guenter Rock <[email protected]>
Signed-off-by: Stefan Wahren <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
Diffstat (limited to 'drivers/hwmon/pwm-fan.c')
| -rw-r--r-- | drivers/hwmon/pwm-fan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c index 167221c7628a..e4c5197417a8 100644 --- a/drivers/hwmon/pwm-fan.c +++ b/drivers/hwmon/pwm-fan.c @@ -271,7 +271,7 @@ static int pwm_fan_probe(struct platform_device *pdev) ret = pwm_fan_of_get_cooling_data(&pdev->dev, ctx); if (ret) - return ret; + goto err_pwm_disable; ctx->pwm_fan_state = ctx->pwm_fan_max_state; if (IS_ENABLED(CONFIG_THERMAL)) { |
