diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-08-31 14:24:00 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-09 14:55:17 -0500 |
commit | a5d2f7273c4f59942cc7ffa763d6b60a6f44e908 (patch) | |
tree | 58aa343b12e77313bc708d3166a9bc609039d40c /hw/usb-wacom.c | |
parent | 806b60248218bd5f74a8b070f5a99a864e8e51c6 (diff) |
qdev/usb: make qemu aware of usb busses.
Move usb code from vl.c to usb-bus.c and make it use the new data
structures added by qdev conversion. qemu usb core should be able
to handle multiple USB busses just fine now (untested though).
Kill some usb_*_init() legacy functions, use usb_create_simple()
instead.
Kill some FIXMEs added by the first qdev/usb patch.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/usb-wacom.c')
-rw-r--r-- | hw/usb-wacom.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/usb-wacom.c b/hw/usb-wacom.c index a5abb98f5c..4007e0fe5a 100644 --- a/hw/usb-wacom.c +++ b/hw/usb-wacom.c @@ -399,11 +399,6 @@ static int usb_wacom_initfn(USBDevice *dev) return 0; } -USBDevice *usb_wacom_init(void) -{ - return usb_create_simple(NULL /* FIXME */, "QEMU PenPartner Tablet"); -} - static struct USBDeviceInfo wacom_info = { .qdev.name = "QEMU PenPartner Tablet", .qdev.size = sizeof(USBWacomState), |