summaryrefslogtreecommitdiff
path: root/board/felwinter
diff options
context:
space:
mode:
authorJosh Tsai <josh_tsai@compal.corp-partner.google.com>2021-11-11 11:28:08 +0800
committerCommit Bot <commit-bot@chromium.org>2021-11-11 08:48:00 +0000
commit7d1a6e39dffb6282fe50918df069613fa834eb50 (patch)
tree440c53931e4c8fd94133abae566b37e703aeb0e6 /board/felwinter
parentc669224a0da735e676478b147cf7c282179b12c8 (diff)
downloadchrome-ec-7d1a6e39dffb6282fe50918df069613fa834eb50.tar.gz
Felwinter: Modified the actual_key value to mask the search key
Wrong actual_key value causes the search key no function. Modified the correct autaul_key to fixed this issue BUG=b:205812842 BRANCH=none TEST=DUT search key is workable Signed-off-by: Josh Tsai <josh_tsai@compal.corp-partner.google.com> Change-Id: I9c5b71f2041046f208723e7650b9401b372e5088 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3274736 Reviewed-by: Ko Ko <ko_ko@compal.corp-partner.google.com> Reviewed-by: caveh jalali <caveh@chromium.org>
Diffstat (limited to 'board/felwinter')
-rw-r--r--board/felwinter/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/felwinter/keyboard.c b/board/felwinter/keyboard.c
index c74a2bc58d..a8cbf72238 100644
--- a/board/felwinter/keyboard.c
+++ b/board/felwinter/keyboard.c
@@ -19,7 +19,7 @@ __override struct keyboard_scan_config keyscan_config = {
.min_post_scan_delay_us = 1000,
.poll_timeout_us = 100 * MSEC,
.actual_key_mask = {
- 0x14, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff,
+ 0x1c, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff,
0xa4, 0xff, 0xfe, 0x55, 0xfe, 0xff, 0xff, 0xff, /* full set */
},
};