diff options
author | wdenk <wdenk> | 2004-01-21 20:46:28 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-01-21 20:46:28 +0000 |
commit | ef978730dcb3e7e398fe9b57633f3f67260c1bbc (patch) | |
tree | b48984c960bf12a153efad246cd6d520951aa2a4 /drivers/keyboard.c | |
parent | c837dcb1a316745092567bfe4fb266d0941884ff (diff) | |
download | u-boot-imx-ef978730dcb3e7e398fe9b57633f3f67260c1bbc.zip u-boot-imx-ef978730dcb3e7e398fe9b57633f3f67260c1bbc.tar.gz u-boot-imx-ef978730dcb3e7e398fe9b57633f3f67260c1bbc.tar.bz2 |
* Fix PS/2 keyboard problem caused by statically initialized variable
pointing to a location in flash
* Fix INCA-IP clock calculation: 400/3 = 133.3 MHz, not 130.
Diffstat (limited to 'drivers/keyboard.c')
-rw-r--r-- | drivers/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/keyboard.c b/drivers/keyboard.c index 738ff9f..a42468f 100644 --- a/drivers/keyboard.c +++ b/drivers/keyboard.c @@ -194,7 +194,7 @@ void handle_scancode(unsigned char scancode) case 0xBA: /* caps lock released */ return; /* just swallow */ } -#if 0 +#if 1 if((scancode&0x80)==0x80) /* key released */ return; #else |