diff options
author | Anthony Liguori | 2012-02-04 00:41:59 +0100 |
---|---|---|
committer | Blue Swirl | 2012-02-04 18:24:41 +0100 |
commit | d217d208b5b518251196fbadd7f2fb1ed246cb13 (patch) | |
tree | b7d1db52f7ab53c551361565e7be20abb807e87b | |
parent | vga: improve documentation (diff) | |
download | qemu-d217d208b5b518251196fbadd7f2fb1ed246cb13.tar.gz qemu-d217d208b5b518251196fbadd7f2fb1ed246cb13.tar.xz qemu-d217d208b5b518251196fbadd7f2fb1ed246cb13.zip |
usb-bsd: convert to QOM
Simple enough.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | usb-bsd.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -410,15 +410,16 @@ static void usb_host_class_initfn(ObjectClass *klass, void *data) uc->handle_destroy = usb_host_handle_destroy; } -static struct DeviceInfo usb_host_dev_info = { - .name = "usb-host", - .size = sizeof(USBHostDevice), - .class_init= usb_host_initfn, +static TypeInfo usb_host_dev_info = { + .name = "usb-host", + .parent = TYPE_USB_DEVICE, + .instance_size = sizeof(USBHostDevice), + .class_init = usb_host_initfn, }; static void usb_host_register_devices(void) { - usb_qdev_register(&usb_host_dev_info, NULL, NULL); + type_register_static(&usb_host_dev_info); } device_init(usb_host_register_devices) |