diff options
-rw-r--r-- | board/dooly/led.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/dooly/led.c b/board/dooly/led.c index 732ab88284..2c910bcbdb 100644 --- a/board/dooly/led.c +++ b/board/dooly/led.c @@ -201,9 +201,9 @@ void led_alert(int enable) if (chipset_in_state(CHIPSET_STATE_ON)) led_resume(); else if (chipset_in_state(CHIPSET_STATE_SUSPEND)) - led_suspend(); + led_suspend_hook(); else if (chipset_in_state(CHIPSET_STATE_ANY_OFF)) - led_shutdown(); + led_shutdown_hook(); } } |