diff options
Diffstat (limited to 'hw/omap_synctimer.c')
-rw-r--r-- | hw/omap_synctimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap_synctimer.c b/hw/omap_synctimer.c index 118668aead..67f65e6da2 100644 --- a/hw/omap_synctimer.c +++ b/hw/omap_synctimer.c @@ -27,7 +27,7 @@ struct omap_synctimer_s { /* 32-kHz Sync Timer of the OMAP2 */ static uint32_t omap_synctimer_read(struct omap_synctimer_s *s) { - return muldiv64(qemu_get_clock(vm_clock), 0x8000, get_ticks_per_sec()); + return muldiv64(qemu_get_clock_ns(vm_clock), 0x8000, get_ticks_per_sec()); } void omap_synctimer_reset(struct omap_synctimer_s *s) |