diff options
author | Gonglei | 2014-06-04 10:31:46 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2014-08-29 12:51:44 +0200 |
commit | e5a9bece9b5064d0cb0fda68ff68b9361085f400 (patch) | |
tree | 14423b0ee2bd398e62c88878e2ee7676ef7dd935 /include | |
parent | Revert "xhci: Fix number of streams allocated when using streams" (diff) | |
download | qemu-e5a9bece9b5064d0cb0fda68ff68b9361085f400.tar.gz qemu-e5a9bece9b5064d0cb0fda68ff68b9361085f400.tar.xz qemu-e5a9bece9b5064d0cb0fda68ff68b9361085f400.zip |
usb: add usb_bus_release function
add global variables releasing logic when the usb buses
were removed or hot-unpluged.
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/usb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/usb.h b/include/hw/usb.h index 223a5aef8f..6b32a3bb70 100644 --- a/include/hw/usb.h +++ b/include/hw/usb.h @@ -529,6 +529,7 @@ struct USBBusOps { void usb_bus_new(USBBus *bus, size_t bus_size, USBBusOps *ops, DeviceState *host); +void usb_bus_release(USBBus *bus); USBBus *usb_bus_find(int busnr); void usb_legacy_register(const char *typename, const char *usbdevice_name, USBDevice *(*usbdevice_init)(USBBus *bus, |