diff options
Diffstat (limited to 'hw/rc4030.c')
-rw-r--r-- | hw/rc4030.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/rc4030.c b/hw/rc4030.c index f4ac83fff5..c2b2a3eb56 100644 --- a/hw/rc4030.c +++ b/hw/rc4030.c @@ -104,7 +104,8 @@ static void set_next_tick(rc4030State *s) tm_hz = 1000 / (s->itr + 1); - qemu_mod_timer(s->periodic_timer, qemu_get_clock(vm_clock) + ticks_per_sec / tm_hz); + qemu_mod_timer(s->periodic_timer, qemu_get_clock(vm_clock) + + get_ticks_per_sec() / tm_hz); } /* called for accesses to rc4030 */ |