Skip to content

Commit cd3da43

Browse files
kiram9JohnAZoidberg
authored andcommitted
fwk: revert fan.c
revert fan.c from 6de07df42c3a2e2fa4704ec972a312c5c7e28755 we need old TGL fans to stay on to prevent clicking on startup
1 parent fb931e8 commit cd3da43

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

baseboard/fwk/fan.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ void fan_set_rpm_target(int ch, int rpm)
176176

177177
if (ch < 0 || ch > MCHP_TACH_ID_MAX || ch > FAN_CH_COUNT)
178178
return;
179-
/* Keep the fan spinning at min speed for a 10s after we transition to 0 rpm*/
179+
/* Keep the fan spinning at min speed for a minute after we transition to 0 rpm*/
180180
if (rpm == 0 && rpm_setting[ch] != rpm) {
181181
timestamp_t now = get_time();
182182

183-
fan_spindown_time.val = now.val + 10*SECOND;
183+
fan_spindown_time.val = now.val + 60*SECOND;
184184
}
185185
rpm_setting[ch] = rpm;
186186
if (chipset_in_state(CHIPSET_STATE_ON) && rpm == 0 &&

0 commit comments

Comments
 (0)