diff options
Diffstat (limited to 'hw/usb-uhci.c')
-rw-r--r-- | hw/usb-uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 09ffd4b36b..6807413682 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -1054,7 +1054,7 @@ static void uhci_frame_timer(void *opaque) /* prepare the timer for the next frame */ expire_time = qemu_get_clock(vm_clock) + - (ticks_per_sec / FRAME_TIMER_FREQ); + (get_ticks_per_sec() / FRAME_TIMER_FREQ); qemu_mod_timer(s->frame_timer, expire_time); } |