summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-10-18 21:17:22 -0600
committerSimon Glass <sjg@chromium.org>2015-11-19 20:13:40 -0700
commit2e5513bda07790d4068a58b0a6b6687600d23949 (patch)
treec5ec3dae3ade4e1025df23a96760e5dd193ea2c8 /drivers/input
parentc5d257f93f1a20a14ee0e9a236e6160b9d2925aa (diff)
downloadblackbird-obmc-uboot-2e5513bda07790d4068a58b0a6b6687600d23949.tar.gz
blackbird-obmc-uboot-2e5513bda07790d4068a58b0a6b6687600d23949.zip
input: Correct keycode for Ctrl-Y
This code is currently incorrect, perhaps due to a typo. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c
index 82e8381c34..a6834cf3f6 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -65,7 +65,7 @@ static unsigned char kbd_shift_xlate[] = {
static unsigned char kbd_ctrl_xlate[] = {
0xff, 0x1b, '1', 0x00, '3', '4', '5', 0x1E,
'7', '8', '9', '0', 0x1F, '=', '\b', '\t', /* 0x00 - 0x0f */
- 0x11, 0x17, 0x05, 0x12, 0x14, 0x18, 0x15, 0x09,
+ 0x11, 0x17, 0x05, 0x12, 0x14, 0x19, 0x15, 0x09,
0x0f, 0x10, 0x1b, 0x1d, '\n', 0xff, 0x01, 0x13, /* 0x10 - 0x1f */
0x04, 0x06, 0x08, 0x09, 0x0a, 0x0b, 0x0c, ';',
'\'', '~', 0x00, 0x1c, 0x1a, 0x18, 0x03, 0x16, /* 0x20 - 0x2f */
OpenPOWER on IntegriCloud