summaryrefslogtreecommitdiff
path: root/common/fan.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/fan.c')
-rw-r--r--common/fan.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/fan.c b/common/fan.c
index 18ea31acdb..5e2f85475f 100644
--- a/common/fan.c
+++ b/common/fan.c
@@ -510,7 +510,11 @@ static void pwm_fan_resume(void)
{
int fan;
for (fan = 0; fan < CONFIG_FANS; fan++) {
+#ifdef CONFIG_FAN_RPM_CUSTOM
+ set_thermal_control_enabled(fan, 1);
+#else
set_thermal_control_enabled(fan, 0);
+#endif
fan_set_rpm_target(fans[fan].ch, fans[fan].rpm_max);
set_enabled(fan, 1);
}