diff --git a/usb-linux.c b/usb-linux.c index 67639f3bc1a4ed5af998ae28b5fd8193aee0253d..2075c4c67a7823a9afdf8610c99f19f0e049b1ee 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1354,10 +1354,16 @@ out: return 0; } +static const VMStateDescription vmstate_usb_host = { + .name = "usb-host", + .unmigratable = 1, +}; + static struct USBDeviceInfo usb_host_dev_info = { .product_desc = "USB Host Device", .qdev.name = "usb-host", .qdev.size = sizeof(USBHostDevice), + .qdev.vmsd = &vmstate_usb_host, .init = usb_host_initfn, .handle_packet = usb_generic_handle_packet, .cancel_packet = usb_host_async_cancel,