diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2009-10-26 15:56:45 +0100 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-30 08:39:30 -0500 |
| commit | 0958b4cc8f7889b61770690fa29a1201895cf581 (patch) | |
| tree | 377a8fb798d1607f0c90d852b31465fd4db1f13e /hw/qdev.h | |
| parent | 51edd4e6b5a5dfbe168f21ff7cdc5d63e16c160b (diff) | |
| download | focaccia-qemu-0958b4cc8f7889b61770690fa29a1201895cf581.tar.gz focaccia-qemu-0958b4cc8f7889b61770690fa29a1201895cf581.zip | |
usb core: use qdev for -usbdevice
This patchs adds infrastructure to handle -usbdevice via qdev callbacks. USBDeviceInfo gets a name field (for the -usbdevice driver name) and a callback for -usbdevice parameter parsing. The new usbdevice_create() function walks the qdev driver list and looks for a usb driver with a matching name. When a parameter parsing callback is present it is called, otherwise the device is created via usb_create_simple(). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/qdev.h')
| -rw-r--r-- | hw/qdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/qdev.h b/hw/qdev.h index 9c8f9e2ece..41642ee8a9 100644 --- a/hw/qdev.h +++ b/hw/qdev.h @@ -141,6 +141,7 @@ struct DeviceInfo { BusInfo *bus_info; struct DeviceInfo *next; }; +extern DeviceInfo *device_info_list; void qdev_register(DeviceInfo *info); |