- 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
		
			
				
	
	
		
			46 lines
		
	
	
		
			375 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			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)
 | 
						|
{
 | 
						|
}
 |