summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParth Malkan <parthmalkan@google.com>2022-07-18 17:39:40 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-19 01:45:43 +0000
commit1804103b5899ea2897ba12e589d931467f67dbc9 (patch)
tree0262fd852d44dfbb28ff5dd56f6067b11a147c2a
parentf5b5e93e2f246bb5eec2d20c0ffd7a064de96d50 (diff)
downloadchrome-ec-1804103b5899ea2897ba12e589d931467f67dbc9.tar.gz
prism: rgbkbd: Fix space key LED mapping
LED mapping for space key is off, which makes the right most LED on the space key doesn't change color. This patch fixes the mapping. BRANCH=none BUG=b:238899691 TEST=ectool --device 18d1:5022 61 0xff0000 Signed-off-by: Parth Malkan <parthmalkan@google.com> Change-Id: Ibe4fcc68a34bb5b366882bce43c2c7e2250c60da Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3770682 Reviewed-by: YH Lin <yueherngl@chromium.org> Commit-Queue: YH Lin <yueherngl@chromium.org>
-rw-r--r--board/prism/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/prism/board.c b/board/prism/board.c
index a19ea1221f..29a2a92027 100644
--- a/board/prism/board.c
+++ b/board/prism/board.c
@@ -170,7 +170,7 @@ const uint8_t rgbkbd_map[] = {
LED(15, 0), DELM, /* 59: power */
LED(17, 2), LED(18, 2), LED(19, 2), DELM, /* 60: L-alt */
LED(17, 3), LED(18, 3), LED(19, 3), LED(20, 3),
- LED(21, 3), DELM, /* 61: space */
+ LED(21, 3), LED(16, 2), DELM, /* 61: space */
LED(20, 2), DELM, /* 62: R-alt */
DELM, /* 63: (null) */
LED(21, 2), DELM, /* 64: R-ctrl */