diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-05-23 22:00:58 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-05-23 22:00:58 +0000 |
commit | e2825504fde2023ee3fa322b408b80b4ccbaf97f (patch) | |
tree | 6843385a5122ce871572e70099dd3fe249e85d52 /src | |
parent | 5e445c5feee84a7a34657f98538771bbcd447b54 (diff) | |
download | coreboot-e2825504fde2023ee3fa322b408b80b4ccbaf97f.tar.xz |
fix comment in keyboard driver (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4297 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/pc80/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pc80/keyboard.c b/src/pc80/keyboard.c index e255132a7e..424920e71d 100644 --- a/src/pc80/keyboard.c +++ b/src/pc80/keyboard.c @@ -111,7 +111,7 @@ static void pc_keyboard_init(struct pc_keyboard *keyboard) if (!kbc_input_buffer_empty()) return; outb(0x60, 0x64); if (!kbc_input_buffer_empty()) return; - outb(0x20, 0x60); /* send cmd: enable keyboard and IRQ 1 */ + outb(0x20, 0x60); /* send cmd: enable keyboard */ if ((inb(0x64) & 0x01)) { regval = inb(0x60); } |