mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
usb-bt doesn't support migration
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
ccce9fd205
commit
2474e5052b
1 changed files with 6 additions and 0 deletions
|
@ -548,10 +548,16 @@ USBDevice *usb_bt_init(HCIInfo *hci)
|
|||
return dev;
|
||||
}
|
||||
|
||||
static const VMStateDescription vmstate_usb_bt = {
|
||||
.name = "usb-bt",
|
||||
.unmigratable = 1,
|
||||
};
|
||||
|
||||
static struct USBDeviceInfo bt_info = {
|
||||
.product_desc = "QEMU BT dongle",
|
||||
.qdev.name = "usb-bt-dongle",
|
||||
.qdev.size = sizeof(struct USBBtState),
|
||||
.qdev.vmsd = &vmstate_usb_bt,
|
||||
.usb_desc = &desc_bluetooth,
|
||||
.init = usb_bt_initfn,
|
||||
.handle_packet = usb_generic_handle_packet,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue