diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2007-10-17 22:34:40 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2007-10-17 22:34:40 +0000 |
commit | e447df1b25e8657b6033bedd37778fb441dc2081 (patch) | |
tree | 151abcc0ee0602d390ec11f2bb5c16d62e61bd13 /src/pc80/keyboard.c | |
parent | 84453c02f7b5e8c7981370db98ab53f283885f8e (diff) |
Add a debug message to keyboard init. This helped isolate at least one
case of keyboard failure (the keyboard initialization was never hit).
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2869 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/pc80/keyboard.c')
-rw-r--r-- | src/pc80/keyboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pc80/keyboard.c b/src/pc80/keyboard.c index c5e384800f..454de986ad 100644 --- a/src/pc80/keyboard.c +++ b/src/pc80/keyboard.c @@ -27,6 +27,7 @@ static void pc_keyboard_init(struct pc_keyboard *keyboard) { unsigned char regval; + printk_debug("Keyboard init...\n"); /* send cmd = 0xAA, self test 8042 */ outb(0xaa, 0x64); |