summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajat Jain <rajatja@google.com>2020-02-28 13:16:46 -0800
committerCommit Bot <commit-bot@chromium.org>2020-03-03 05:07:37 +0000
commitefbc14d8265fcee2e7de749d7f925c051607e3c2 (patch)
tree9cc83ec237ea71f24c6e1c0ffbc6825566ab01a2
parentb148719adf763dc4c50f1fa5f6c4f6185b5182b2 (diff)
downloadchrome-ec-efbc14d8265fcee2e7de749d7f925c051607e3c2.tar.gz
common/keyboard_scan: Enable the SEARCH key in the default mask
The SEARCH key on Row-3, Col-0 is now standard on Chromeos keyboards. Lets enable it by default. BUG=b:148488560,b:146501925 TEST=Build BRANCH=firmware-hatch-12672.B Signed-off-by: Rajat Jain <rajatja@google.com> Change-Id: I9164a7e2894d70599a2c2eb25ecb2408e3b1eebe Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2080599 Reviewed-by: Scott Collyer <scollyer@chromium.org>
-rw-r--r--common/keyboard_scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keyboard_scan.c b/common/keyboard_scan.c
index c19140cf0a..6e79878ce7 100644
--- a/common/keyboard_scan.c
+++ b/common/keyboard_scan.c
@@ -63,7 +63,7 @@ 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, 0xfa, 0xca /* full set */
},
};