minix/drivers/tty/arch/earm/keyboard.c
David van Moolenbroek 6331e8f845 Retire the synchronous character driver protocol
- change all sync char drivers into async drivers;
- retire support for the sync protocol in libchardev;
- remove async dev style, as this is now the default;
- remove dev_status from VFS;
- clean up now-unused protocol messages.

Change-Id: I6aacff712292f6b29f2ccd51bc1e7d7003723e87
2014-02-18 11:25:02 +01:00

46 lines
375 B
C

/* Keyboard unsupport for ARM. Just stubs. */
#include <minix/ipc.h>
#include <termios.h>
#include "tty.h"
void
kbd_interrupt(message *m)
{
}
void
do_fkey_ctl(message *m)
{
}
void
do_kb_inject(message *m)
{
}
void
do_kbd(message *m)
{
}
void
do_kbdaux(message *m)
{
}
void
kb_init_once(void)
{
}
int
kbd_loadmap(message *m)
{
return 0;
}
void
kb_init(tty_t *tp)
{
}