1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* * Interface between the low-level keyboard driver and the keymapper */ #ifndef _KBD_LL_H #define _KBD_LL_H extern struct pt_regs *kbd_pt_regs; void handle_scancode(unsigned char scancode); /* * Interface for to the host specific interupt setup code */ void keyboard_interrupt(int irq, void *dev_id, struct pt_regs *regs); #endif /* _KBD_LL_H */