From 1804103b5899ea2897ba12e589d931467f67dbc9 Mon Sep 17 00:00:00 2001 From: Parth Malkan Date: Mon, 18 Jul 2022 17:39:40 -0700 Subject: 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 Change-Id: Ibe4fcc68a34bb5b366882bce43c2c7e2250c60da Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3770682 Reviewed-by: YH Lin Commit-Queue: YH Lin --- board/prism/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit v1.2.1