Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3645 → Rev 3646

/trunk/kernel/arch/sparc64/src/console.c
112,11 → 112,23
}
#endif
 
#ifdef CONFIG_NS16550
#ifdef CONFIG_NS16550_INTERRUPT_DRIVEN
if (kbd_type == KBD_NS16550) {
/*
* The ns16550 driver is interrupt-driven.
*/
return;
}
#endif
#endif
while (1) {
#ifdef CONFIG_NS16550
#ifndef CONFIG_NS16550_INTERRUPT_DRIVEN
if (kbd_type == KBD_NS16550)
ns16550_poll();
#endif
#endif
thread_usleep(KEYBOARD_POLL_PAUSE);
}
}