Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 957 → Rev 958

/kernel/trunk/genarch/src/i8042/i8042.c
265,13 → 265,13
SPECIAL, /* 0x7f */
};
 
static void i8042_interrupt(int n, void *stack);
static void i8042_interrupt(int n, istate_t *istate);
static void i8042_wait(void);
 
/** Initialize i8042. */
void i8042_init(void)
{
exc_register(VECTOR_KBD, "i8042_interrupt", i8042_interrupt);
exc_register(VECTOR_KBD, "i8042_interrupt", (iroutine) i8042_interrupt);
i8042_wait();
i8042_command_write(i8042_SET_COMMAND);
i8042_wait();
288,7 → 288,7
* @param n Interrupt vector.
* @param stack Interrupted stack.
*/
void i8042_interrupt(int n, void *stack)
void i8042_interrupt(int n, istate_t *istate)
{
__u8 x;