summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRajat Jain <rajatja@google.com>2020-01-28 16:11:50 -0800
committerCommit Bot <commit-bot@chromium.org>2020-03-05 18:16:42 +0000
commitee087609e2797e570ff38440a6570e5b0a378e00 (patch)
tree36c7341f7437f066b37880c37ab5b0eb21177b47
parent1ff8c55837a9263d05af2b7f12c25e4bb681df6c (diff)
downloadchrome-ec-ee087609e2797e570ff38440a6570e5b0a378e00.tar.gz
hatch/baseboard: Enable the Search key button in mask
Enable the search key located at Row-3, Col-0 BUG=b:146501925,b:148488560 TEST=Check search key while debugging BRANCH=firmware-hatch-12672.B Signed-off-by: Rajat Jain <rajatja@google.com> Change-Id: I3496d6413994f147839fbb29f6d666b5fc6c0914 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2080600 Reviewed-by: Scott Collyer <scollyer@chromium.org> (cherry picked from commit b678a6ff46846883a9b5adb8e16b40adaefa738c) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2084402 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Commit-Queue: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
-rw-r--r--baseboard/hatch/baseboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/baseboard/hatch/baseboard.c b/baseboard/hatch/baseboard.c
index 09c69a10dd..69acfe2241 100644
--- a/baseboard/hatch/baseboard.c
+++ b/baseboard/hatch/baseboard.c
@@ -62,7 +62,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 */
},
};