diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/arm64/arch_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm64/arch_timer.c b/src/arch/arm64/arch_timer.c index 3eb5656a15..742b82cad7 100644 --- a/src/arch/arm64/arch_timer.c +++ b/src/arch/arm64/arch_timer.c @@ -19,7 +19,7 @@ void timer_monotonic_get(struct mono_time *mt) if (tfreq == 0) { tfreq = raw_read_cntfrq_el0(); mult = USECS_PER_SEC; - div = gcd32(tfreq, mult); + div = gcd(tfreq, mult); tfreq /= div; mult /= div; } |