diff options
Diffstat (limited to 'hw/tsc210x.c')
-rw-r--r-- | hw/tsc210x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tsc210x.c b/hw/tsc210x.c index 004e607649..6bbe24d2fe 100644 --- a/hw/tsc210x.c +++ b/hw/tsc210x.c @@ -864,7 +864,7 @@ static void tsc210x_pin_update(TSC210xState *s) s->busy = 1; s->precision = s->nextprecision; s->function = s->nextfunction; - expires = qemu_get_clock(vm_clock) + (ticks_per_sec >> 10); + expires = qemu_get_clock(vm_clock) + (get_ticks_per_sec() >> 10); qemu_mod_timer(s->timer, expires); } |