minix/drivers/tty/arch/earm/keyboard.c
Lionel Sambuc b1c4ba4ab6 ARM updates
Due to the ABI we are using we have to use the earm architecture
moniker for the build system to behave correctly. This involves
then some headers to move around.

There is also a few related Makefile updates as well as minor
source code corrections.
2013-01-17 10:03:58 +01:00

52 lines
418 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_status(message *m)
{
return 0;
}
int
kbd_loadmap(message *m)
{
return 0;
}
void
kb_init(tty_t *tp)
{
}