summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2011-07-20 10:00:51 +0200
committerGerd Hoffmann <kraxel@redhat.com>2011-07-20 14:49:41 +0200
commitccce9fd205317f60dd30a986084eec39addbd09b (patch)
treec2aea463c172baacd877021e2b62117c9bdd5243
parentf54b65630385d7dc7cf3442eb459d1a5b3d1a9c6 (diff)
downloadfocaccia-qemu-ccce9fd205317f60dd30a986084eec39addbd09b.tar.gz
focaccia-qemu-ccce9fd205317f60dd30a986084eec39addbd09b.zip
usb-wacom doesn't support migration
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--hw/usb-wacom.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/usb-wacom.c b/hw/usb-wacom.c
index 9d348e170e..d76ee97e49 100644
--- a/hw/usb-wacom.c
+++ b/hw/usb-wacom.c
@@ -349,6 +349,11 @@ static int usb_wacom_initfn(USBDevice *dev)
     return 0;
 }
 
+static const VMStateDescription vmstate_usb_wacom = {
+    .name = "usb-wacom",
+    .unmigratable = 1,
+};
+
 static struct USBDeviceInfo wacom_info = {
     .product_desc   = "QEMU PenPartner Tablet",
     .qdev.name      = "usb-wacom-tablet",
@@ -356,6 +361,7 @@ static struct USBDeviceInfo wacom_info = {
     .usbdevice_name = "wacom-tablet",
     .usb_desc       = &desc_wacom,
     .qdev.size      = sizeof(USBWacomState),
+    .qdev.vmsd      = &vmstate_usb_wacom,
     .init           = usb_wacom_initfn,
     .handle_packet  = usb_generic_handle_packet,
     .handle_reset   = usb_wacom_handle_reset,