Skip to content
Snippets Groups Projects
Commit eb6f214d authored by Zhang Wei's avatar Zhang Wei Committed by Wolfgang Denk
Browse files

Fix the issue of usb_kbd driver missing the scan code of key 'z'.


The scan code of the key 'z' is 0x1d, which should be handled.

The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
controller.

Signed-off-by: default avatarZhang Wei <wei.zhang@freescale.com>
parent bbf4796f
No related branches found
No related tags found
No related merge requests found
...@@ -257,7 +257,7 @@ static int usb_kbd_translate(unsigned char scancode,unsigned char modifier,int p ...@@ -257,7 +257,7 @@ static int usb_kbd_translate(unsigned char scancode,unsigned char modifier,int p
repeat_delay=REPEAT_DELAY; repeat_delay=REPEAT_DELAY;
} }
keycode=0; keycode=0;
if((scancode>3) && (scancode<0x1d)) { /* alpha numeric values */ if((scancode>3) && (scancode<=0x1d)) { /* alpha numeric values */
keycode=scancode-4 + 0x61; keycode=scancode-4 + 0x61;
if(caps_lock) if(caps_lock)
keycode&=~CAPITAL_MASK; /* switch to capital Letters */ keycode&=~CAPITAL_MASK; /* switch to capital Letters */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment