summaryrefslogtreecommitdiff
path: root/board/gimble
diff options
context:
space:
mode:
authorElsie Shih <elsie_shih@wistron.corp-partner.google.com>2022-02-10 18:18:31 +0800
committerCommit Bot <commit-bot@chromium.org>2022-02-24 05:23:31 +0000
commit334577b2517348136bfe095f4e70099394614253 (patch)
treee684219f98a68ffd7a844f3326d0071ab7577f3c /board/gimble
parenteecb83f9ba22f7c65d054dbdc6d0c2b16fe7f7dd (diff)
downloadchrome-ec-334577b2517348136bfe095f4e70099394614253.tar.gz
gimble: turn off power led in s0ix
BUG=b:220941729, b:218628427 BRANCH=none TEST=make -j BOARD=gimble Signed-off-by: Elsie Shih <elsie_shih@wistron.corp-partner.google.com> Change-Id: I8887398b10dc41530172ae10882ed24b539da952 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3483137 Reviewed-by: Scott Chao <scott_chao@wistron.corp-partner.google.com> Tested-by: Scott Chao <scott_chao@wistron.corp-partner.google.com> Reviewed-by: Boris Mittelberg <bmbm@google.com> Commit-Queue: Boris Mittelberg <bmbm@google.com>
Diffstat (limited to 'board/gimble')
-rw-r--r--board/gimble/led.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/board/gimble/led.c b/board/gimble/led.c
index 4dc4e81759..39bfff17ab 100644
--- a/board/gimble/led.c
+++ b/board/gimble/led.c
@@ -50,10 +50,8 @@ __override struct led_descriptor
__override const struct led_descriptor
led_pwr_state_table[PWR_LED_NUM_STATES][LED_NUM_PHASES] = {
[PWR_LED_STATE_ON] = {{EC_LED_COLOR_WHITE, LED_INDEFINITE} },
- [PWR_LED_STATE_SUSPEND_AC] = {{EC_LED_COLOR_WHITE, 1 * LED_ONE_SEC},
- {LED_OFF, 1 * LED_ONE_SEC} },
- [PWR_LED_STATE_SUSPEND_NO_AC] = {{EC_LED_COLOR_WHITE, 1 * LED_ONE_SEC},
- {LED_OFF, 1 * LED_ONE_SEC} },
+ [PWR_LED_STATE_SUSPEND_AC] = {{LED_OFF, LED_INDEFINITE} },
+ [PWR_LED_STATE_SUSPEND_NO_AC] = {{LED_OFF, LED_INDEFINITE} },
[PWR_LED_STATE_OFF] = {
{LED_OFF, LED_INDEFINITE} },
};