ACPI: thinkpad-acpi: fix a fan watchdog invocation
The fan control watchdog was being called in one place even when the fan control operation had failed. Fix it. Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
committed by
Len Brown
parent
4985cd0a63
commit
ca4ac2f48a
@@ -2888,9 +2888,10 @@ static ssize_t fan_pwm1_store(struct device *dev,
|
|||||||
if (!rc && (status &
|
if (!rc && (status &
|
||||||
(TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
|
(TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
|
||||||
rc = fan_set_level(newlevel);
|
rc = fan_set_level(newlevel);
|
||||||
if (!rc)
|
if (!rc) {
|
||||||
fan_update_desired_level(newlevel);
|
fan_update_desired_level(newlevel);
|
||||||
fan_watchdog_reset();
|
fan_watchdog_reset();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex_unlock(&fan_mutex);
|
mutex_unlock(&fan_mutex);
|
||||||
|
Reference in New Issue
Block a user