diff options
Diffstat (limited to 'hw/usb-uhci.c')
-rw-r--r-- | hw/usb-uhci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index ea83bdc3ee..7b74207b50 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -1094,7 +1094,7 @@ void usb_uhci_piix3_init(PCIBus *bus, int devfn) } s->frame_timer = qemu_new_timer(vm_clock, uhci_frame_timer, s); - qemu_register_reset(uhci_reset, 0, s); + qemu_register_reset(uhci_reset, s); uhci_reset(s); /* Use region 4 for consistency with real hardware. BSD guests seem @@ -1129,7 +1129,7 @@ void usb_uhci_piix4_init(PCIBus *bus, int devfn) } s->frame_timer = qemu_new_timer(vm_clock, uhci_frame_timer, s); - qemu_register_reset(uhci_reset, 0, s); + qemu_register_reset(uhci_reset, s); uhci_reset(s); /* Use region 4 for consistency with real hardware. BSD guests seem |