diff options
author | Ben Warren <bwarren@saruman.qstreams.net> | 2007-11-06 10:17:40 -0500 |
---|---|---|
committer | Ben Warren <bwarren@saruman.qstreams.net> | 2007-11-06 10:17:40 -0500 |
commit | 881cf02f47390c7515f4e11727a473ab042d6d76 (patch) | |
tree | 20ff9f08732a760022a8c09db74bbbf2538d8776 /common | |
parent | e34a0438923a55aeb3fae8fc31ff41230969abaf (diff) | |
parent | 992742a5b09d9040adbd156fb90756af66ade310 (diff) | |
download | u-boot-imx-881cf02f47390c7515f4e11727a473ab042d6d76.zip u-boot-imx-881cf02f47390c7515f4e11727a473ab042d6d76.tar.gz u-boot-imx-881cf02f47390c7515f4e11727a473ab042d6d76.tar.bz2 |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'common')
-rw-r--r-- | common/usb_kbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/usb_kbd.c b/common/usb_kbd.c index aec558a..7bdfcc0 100644 --- a/common/usb_kbd.c +++ b/common/usb_kbd.c @@ -257,7 +257,7 @@ static int usb_kbd_translate(unsigned char scancode,unsigned char modifier,int p repeat_delay=REPEAT_DELAY; } keycode=0; - if((scancode>3) && (scancode<0x1d)) { /* alpha numeric values */ + if((scancode>3) && (scancode<=0x1d)) { /* alpha numeric values */ keycode=scancode-4 + 0x61; if(caps_lock) keycode&=~CAPITAL_MASK; /* switch to capital Letters */ |