Files
Sasha Levin be1eb89b75 kvm tools: kbd initialization check
Check if i8042 is supported only within the initialization call itself, so that
builtin-run won't need to know which archs are supported by it.

Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
2015-06-01 16:39:53 +01:00

13 lines
168 B
C

#ifndef KVM__PCKBD_H
#define KVM__PCKBD_H
#include <linux/types.h>
struct kvm;
void mouse_queue(u8 c);
void kbd_queue(u8 c);
int kbd__init(struct kvm *kvm);
#endif