File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 2020void start_fan_deferred (void )
2121{
2222 /* force turn on the fan for diagnostic */
23- dptf_set_fan_duty_target (5 );
23+ dptf_set_fan_duty_target (20 );
2424}
2525DECLARE_DEFERRED (start_fan_deferred );
2626
@@ -32,13 +32,10 @@ void check_device_deferred(void)
3232 if (get_deck_state () != DECK_ON && !get_standalone_mode ())
3333 set_diagnostic (DIAGNOSTICS_INPUT_MODULE_FAULT , true);
3434
35- /* force turn on the fan for diagnostic */
36- dptf_set_fan_duty_target (5 );
37-
38- if (!(fan_get_rpm_actual (0 ) > 100 ))
35+ if (!(fan_get_rpm_actual (0 ) > 100 ) && !get_standalone_mode ())
3936 set_diagnostic (DIAGNOSTICS_NO_RIGHT_FAN , true);
4037
41- if (!(fan_get_rpm_actual (1 ) > 100 ))
38+ if (!(fan_get_rpm_actual (1 ) > 100 ) && ! get_standalone_mode () )
4239 set_diagnostic (DIAGNOSTICS_NO_LEFT_FAN , true);
4340
4441 /* Exit the duty mode and let thermal to control the fan */
Original file line number Diff line number Diff line change @@ -541,7 +541,8 @@ static void led_tick(void)
541541 }
542542
543543 /* Input Deck not fully populated */
544- if (!input_deck_is_fully_populated () && !get_standalone_mode ()) {
544+ if (!input_deck_is_fully_populated () && !get_standalone_mode () &&
545+ !chipset_in_state (CHIPSET_STATE_ANY_OFF )) {
545546 colors [0 ] = LED_RED ;
546547 colors [1 ] = LED_BLUE ;
547548 colors [2 ] = LED_OFF ;
You can’t perform that action at this time.
0 commit comments