コード例 #1
0
ファイル: uart_kbd_sun.c プロジェクト: AhmadTux/freebsd
static int
sunkbd_enable(keyboard_t *kbd)
{

	KBD_ACTIVATE(kbd);
	return (0);
}
コード例 #2
0
/*
 * Enable the access to the device; until this function is called,
 * the client cannot read from the keyboard.
 */
static int
ukbd_enable(keyboard_t *kbd)
{
	crit_enter();
	KBD_ACTIVATE(kbd);
	crit_exit();
	return 0;
}
コード例 #3
0
ファイル: pl050.c プロジェクト: ele7enxxh/dtrace-pf
/*
 * Enable the access to the device; until this function is called,
 * the client cannot read from the keyboard.
 */
static int
kmi_enable(keyboard_t *kbd)
{

	KMI_LOCK();
	KBD_ACTIVATE(kbd);
	KMI_UNLOCK();

	return (0);
}
コード例 #4
0
ファイル: pc98kbd.c プロジェクト: UnitedMarsupials/kame
/* 
 * Enable the access to the device; until this function is called,
 * the client cannot read from the keyboard.
 */
static int
pckbd_enable(keyboard_t *kbd)
{
	int s;

	s = spltty();
	KBD_ACTIVATE(kbd);
	splx(s);
	return 0;
}
コード例 #5
0
ファイル: chrome_kb.c プロジェクト: ChristosKa/freebsd
/*
 * Enable the access to the device; until this function is called,
 * the client cannot read from the keyboard.
 */
static int
ckb_enable(keyboard_t *kbd)
{

	CKB_LOCK();
	KBD_ACTIVATE(kbd);
	CKB_UNLOCK();

	return (0);
}