summaryrefslogtreecommitdiff
path: root/board/boten
diff options
context:
space:
mode:
authoramber.chen <amber.chen@lcfc.corp-partner.google.com>2020-12-25 16:39:38 +0800
committerCommit Bot <commit-bot@chromium.org>2020-12-28 22:04:13 +0000
commitb5e260c96d9a5eba4fe82a67b5a59ab79d406071 (patch)
tree23f85957f60a2225e64e07b9821d25b88bbce956 /board/boten
parentb490e372ec3d321b71d949cb48f274c0f784b622 (diff)
downloadchrome-ec-b5e260c96d9a5eba4fe82a67b5a59ab79d406071.tar.gz
boten: modify LED function to match SPEC
modify LED function to match LED SPEC BUG=b:174806640 BRANCH=dedede TEST=make -j BOARD=boten Signed-off-by: amber.chen <amber.chen@lcfc.corp-partner.google.com> Change-Id: Id9e6e990e264b8bf1013cc49368ed100a1692ff8 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2603085 Tested-by: Justin TerAvest <teravest@chromium.org> Reviewed-by: Henry Sun <henrysun@google.com> Reviewed-by: Justin TerAvest <teravest@chromium.org> Commit-Queue: Justin TerAvest <teravest@chromium.org>
Diffstat (limited to 'board/boten')
-rw-r--r--board/boten/led.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/board/boten/led.c b/board/boten/led.c
index fe0a03e8db..4a9433f84c 100644
--- a/board/boten/led.c
+++ b/board/boten/led.c
@@ -36,7 +36,8 @@ const struct led_descriptor
[PWR_LED_STATE_ON] = {{EC_LED_COLOR_WHITE, LED_INDEFINITE} },
[PWR_LED_STATE_SUSPEND_AC] = {{EC_LED_COLOR_WHITE, 3 * LED_ONE_SEC},
{LED_OFF, 0.5 * LED_ONE_SEC} },
- [PWR_LED_STATE_SUSPEND_NO_AC] = {{LED_OFF, LED_INDEFINITE} },
+ [PWR_LED_STATE_SUSPEND_NO_AC] = {{EC_LED_COLOR_WHITE, 3 * LED_ONE_SEC},
+ {LED_OFF, 0.5 * LED_ONE_SEC} },
[PWR_LED_STATE_OFF] = {{LED_OFF, LED_INDEFINITE} },
};