diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-07-20 10:06:18 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-07-20 14:49:41 +0200 |
commit | 98e51ec92e678cf0e501b5ef013753ec8710e222 (patch) | |
tree | 32a9500c6c168bbbe775c5681afddf0431820a55 /hw/usb-serial.c | |
parent | 4ab0ba9e26d52a272cadd5635437a341a4e7ff36 (diff) |
usb-serial doesn't support migration
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-serial.c')
-rw-r--r-- | hw/usb-serial.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/usb-serial.c b/hw/usb-serial.c index 59cb0fb2f7..70d694d3cb 100644 --- a/hw/usb-serial.c +++ b/hw/usb-serial.c @@ -566,10 +566,16 @@ static USBDevice *usb_braille_init(const char *unused) return dev; } +static const VMStateDescription vmstate_usb_serial = { + .name = "usb-serial", + .unmigratable = 1, +}; + static struct USBDeviceInfo serial_info = { .product_desc = "QEMU USB Serial", .qdev.name = "usb-serial", .qdev.size = sizeof(USBSerialState), + .qdev.vmsd = &vmstate_usb_serial, .usb_desc = &desc_serial, .init = usb_serial_initfn, .handle_packet = usb_generic_handle_packet, @@ -589,6 +595,7 @@ static struct USBDeviceInfo braille_info = { .product_desc = "QEMU USB Braille", .qdev.name = "usb-braille", .qdev.size = sizeof(USBSerialState), + .qdev.vmsd = &vmstate_usb_serial, .usb_desc = &desc_braille, .init = usb_serial_initfn, .handle_packet = usb_generic_handle_packet, |