diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-12 11:34:50 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-12 11:40:04 +0100 |
commit | ace1318b8ea95efa332fb3e8e159924d4f928753 (patch) | |
tree | 62b32033a71515f963fb891db398dac724477ffe /hw/usb-bus.c | |
parent | 70d31cb22cb67745741b2bb349c9c7c3a184f88b (diff) |
usb: zap pdev from usbport
It isn't needed any more.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-bus.c')
-rw-r--r-- | hw/usb-bus.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/usb-bus.c b/hw/usb-bus.c index f89176b912..6e2e5fd17a 100644 --- a/hw/usb-bus.c +++ b/hw/usb-bus.c @@ -120,11 +120,10 @@ USBDevice *usb_create_simple(USBBus *bus, const char *name) } void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index, - USBDevice *pdev, USBPortOps *ops, int speedmask) + USBPortOps *ops, int speedmask) { port->opaque = opaque; port->index = index; - port->pdev = pdev; port->opaque = opaque; port->index = index; port->ops = ops; |