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-hub.c | |
parent | 70d31cb22cb67745741b2bb349c9c7c3a184f88b (diff) | |
download | qemu-ace1318b8ea95efa332fb3e8e159924d4f928753.tar.gz qemu-ace1318b8ea95efa332fb3e8e159924d4f928753.tar.bz2 qemu-ace1318b8ea95efa332fb3e8e159924d4f928753.zip |
usb: zap pdev from usbport
It isn't needed any more.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb-hub.c')
-rw-r--r-- | hw/usb-hub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c index 387c40c040..78698caf67 100644 --- a/hw/usb-hub.c +++ b/hw/usb-hub.c @@ -536,7 +536,7 @@ static int usb_hub_initfn(USBDevice *dev) for (i = 0; i < NUM_PORTS; i++) { port = &s->ports[i]; usb_register_port(usb_bus_from_device(dev), - &port->port, s, i, &s->dev, &usb_hub_port_ops, + &port->port, s, i, &usb_hub_port_ops, USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL); port->wPortStatus = PORT_STAT_POWER; port->wPortChange = 0; |