summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRajat Jain <rajatja@google.com>2020-02-20 19:01:53 -0800
committerCommit Bot <commit-bot@chromium.org>2020-03-04 23:06:33 +0000
commit85cbad404f0cbbb9300661312340352ff9afd63f (patch)
tree0269838bc2d2c9585aa23c77e5b63f6716a3f93b /common
parent7c5d5f3e590c44decc33919cee495b6a066a079b (diff)
downloadchrome-ec-85cbad404f0cbbb9300661312340352ff9afd63f.tar.gz
common/keyboard_8042: Fix the Search key row/col
The Search key is located at Row-3, Col0. Correspondingly, allow it to be printed when that key is pressed. BUG=b:146501925,b:148488560 TEST=Check search key while debugging BRANCH=firmware-hatch-12672.B Change-Id: Ic8422a0514698b1745925516bd15fe29f41c586a Signed-off-by: Rajat Jain <rajatja@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2080601 Reviewed-by: Furquan Shaikh <furquan@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/keyboard_8042_sharedlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keyboard_8042_sharedlib.c b/common/keyboard_8042_sharedlib.c
index 429400ef28..cdf4f4fd8d 100644
--- a/common/keyboard_8042_sharedlib.c
+++ b/common/keyboard_8042_sharedlib.c
@@ -87,7 +87,7 @@ char * const keycap_long_label[KLLI_MAX & KEYCAP_LONG_LABEL_INDEX_BITMASK] = {
SHAREDLIB(const
#endif
char keycap_label[KEYBOARD_COLS_MAX][KEYBOARD_ROWS] = {
- {KLLI_UNKNO, KLLI_UNKNO, KLLI_L_CTR, KLLI_UNKNO,
+ {KLLI_UNKNO, KLLI_UNKNO, KLLI_L_CTR, KLLI_SEARC,
KLLI_R_CTR, KLLI_UNKNO, KLLI_UNKNO, KLLI_UNKNO},
{KLLI_SEARC, KLLI_ESC, KLLI_TAB, '~',
'a', 'z', '1', 'q'},