summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacky_Wang <jacky5_wang@pegatron.corp-partner.google.com>2022-09-14 10:44:34 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-09-15 16:12:27 +0000
commit94435b05c9868673ed5ca1a9ffed88f369948333 (patch)
tree8b4c08422ce24b566a504c39e06390667868b4b1
parent95b71c4df2bd92a751ca60e122f6c1004115c443 (diff)
downloadchrome-ec-94435b05c9868673ed5ca1a9ffed88f369948333.tar.gz
Delbin-G: Correct the keyboard matrix value for KP_ENTER
Correct the keyboard matrix value for enter key(keypad). BUG=b:232737379 BRANCH=firmware-volteer-13672.B TEST=make BOARD=delbin Check press KP_ENTER key will show KEY_KPENTER on evtest. Signed-off-by: Jacky_Wang <jacky5_wang@pegatron.corp-partner.google.com> Change-Id: Iadbd44c848316ce5d1a856a709d214ae7d9b3625 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3893307 Reviewed-by: Kenny Pan <kennypan@google.com> Commit-Queue: Kenny Pan <kennypan@google.com>
-rw-r--r--board/delbin/keyboard_customization.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/delbin/keyboard_customization.c b/board/delbin/keyboard_customization.c
index 2cbe1ac57b..56cf33ad7a 100644
--- a/board/delbin/keyboard_customization.c
+++ b/board/delbin/keyboard_customization.c
@@ -30,7 +30,7 @@ static uint16_t KB2scancode_set2[KEYBOARD_COLS_MAX][KEYBOARD_ROWS] = {
{ 0xe07a, 0x005d, 0xe075, 0x006b, 0x005a, 0xe072, 0x004a, 0x0066 },
{ 0xe06b, 0xe074, 0xe069, 0x0067, 0xe06c, 0x0064, 0x0015, 0xe07d },
{ 0x0073, 0x007c, 0x007b, 0x0074, 0x0071, 0xe04a, 0x0070, 0x0021 },
- { 0x0023, 0x005a, 0x0075, 0x0079, 0x007a, 0x0072, 0x007D, 0x0069 },
+ { 0x0023, 0xe05a, 0x0075, 0x0079, 0x007a, 0x0072, 0x007D, 0x0069 },
};
/* The standard Chrome OS keyboard matrix table in scan code set 2. */