mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-09-04 04:31:27 +00:00
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>
13 lines
168 B
C
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
|