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
This commit is contained in:
Stefan Reinauer 2009-05-23 22:00:58 +00:00 committed by Stefan Reinauer
parent 5e445c5fee
commit e2825504fd
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ static void pc_keyboard_init(struct pc_keyboard *keyboard)
if (!kbc_input_buffer_empty()) return; if (!kbc_input_buffer_empty()) return;
outb(0x60, 0x64); outb(0x60, 0x64);
if (!kbc_input_buffer_empty()) return; 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)) { if ((inb(0x64) & 0x01)) {
regval = inb(0x60); regval = inb(0x60);
} }