]> git.sur5r.net Git - u-boot/commitdiff
input: Add a few more keyboard keycodes
authorSimon Glass <sjg@chromium.org>
Mon, 19 Oct 2015 03:17:23 +0000 (21:17 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 20 Nov 2015 03:13:40 +0000 (20:13 -0700)
The slash and * are missing from the keycode tables. Add these so that
these keypad keys can be used.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/input/input.c

index a6834cf3f670c4c6bd1cb0d94bc6dbb512e5b527..e65942ec58a68e851380b17b53ec22e1b96c1fe4 100644 (file)
@@ -43,7 +43,7 @@ static const uchar kbd_plain_xlate[] = {
        '8',  '9',  '-',  '4',  '5',  '6',  '+',  '1',  /* 0x40 - 0x4f */
        '2',  '3',  '0',  '.', 0xff, 0xff, 0xff, 0xff,
        0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x50 - 0x5F */
-       '\r', 0xff, 0xff
+       '\r', 0xff, '/',  '*',
 };
 
 static unsigned char kbd_shift_xlate[] = {
@@ -59,7 +59,7 @@ static unsigned char kbd_shift_xlate[] = {
        '8', '9', '-', '4', '5', '6', '+', '1', /* 0x40 - 0x4f */
        '2', '3', '0', '.', 0xff, 0xff, 0xff, 0xff, 0xff,
        0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,       /* 0x50 - 0x5F */
-       '\r', 0xff, 0xff
+       '\r', 0xff, '/',  '*',
 };
 
 static unsigned char kbd_ctrl_xlate[] = {
@@ -75,7 +75,7 @@ static unsigned char kbd_ctrl_xlate[] = {
        '8', '9', '-', '4', '5', '6', '+', '1',         /* 0x40 - 0x4f */
        '2', '3', '0', '.', 0xff, 0xff, 0xff, 0xff,
        0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 0x50 - 0x5F */
-       '\r', 0xff, 0xff
+       '\r', 0xff, '/',  '*',
 };
 
 /*