aboutsummaryrefslogtreecommitdiff
path: root/hw/usb-uhci.c
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2010-12-08 13:35:02 +0200
committerBlue Swirl <blauwirbel@gmail.com>2010-12-11 21:32:44 +0000
commitab28ccc0c67f52d8966b8172108cb8a6f76e6d2a (patch)
tree603989d1aa783e41ba0bb2bdaf4090ba01583118 /hw/usb-uhci.c
parent5e0259e7facb6aaac326c3beef79e4d2414c38d4 (diff)
downloadqemu-ab28ccc0c67f52d8966b8172108cb8a6f76e6d2a.zip
qemu-ab28ccc0c67f52d8966b8172108cb8a6f76e6d2a.tar.gz
qemu-ab28ccc0c67f52d8966b8172108cb8a6f76e6d2a.tar.bz2
Record which USBDevice USBPort belongs too.
Ports on root hub will have NULL here. This is needed to reconstruct path from device to its root hub to build device path. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/usb-uhci.c')
-rw-r--r--hw/usb-uhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c
index 1d83400..b9b822f 100644
--- a/hw/usb-uhci.c
+++ b/hw/usb-uhci.c
@@ -1115,7 +1115,7 @@ static int usb_uhci_common_initfn(UHCIState *s)
usb_bus_new(&s->bus, &s->dev.qdev);
for(i = 0; i < NB_PORTS; i++) {
- usb_register_port(&s->bus, &s->ports[i].port, s, i, uhci_attach);
+ usb_register_port(&s->bus, &s->ports[i].port, s, i, NULL, uhci_attach);
}
s->frame_timer = qemu_new_timer(vm_clock, uhci_frame_timer, s);
s->expire_time = qemu_get_clock(vm_clock) +