From 3b44865950076c49a0ba5cd509e97670fb3daf34 Mon Sep 17 00:00:00 2001 From: Kitae Kim Date: Tue, 18 Dec 2012 18:00:58 +0900 Subject: [PATCH] virtio : Added virtio-keyboard init and exit function declaration. Added virtio-keyboard init and exit function declaration into virtio header file because it might cause errors on 64bit OS if function declaration is missing. Signed-off-by: Kitae Kim --- hw/virtio.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/virtio.h b/hw/virtio.h index 2e6d030..6cd7b9e 100644 --- a/hw/virtio.h +++ b/hw/virtio.h @@ -222,6 +222,8 @@ VirtIODevice *maru_virtio_touchscreen_init(DeviceState *dev); void maru_virtio_touchscreen_exit(VirtIODevice *vdev); VirtIODevice *virtio_esm_init(DeviceState *dev); void virtio_esm_exit(VirtIODevice *vdev); +VirtIODevice *virtio_keyboard_init(DeviceState *dev); +void virtio_keyboard_exit(VirtIODevice *vdev); #endif -- 2.7.4