]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm, davinci: Use lldiv for the 64-bit divisions in timer.c
authorChristian Riesch <christian.riesch@omicron.at>
Fri, 9 Dec 2011 15:54:01 +0000 (16:54 +0100)
committerWolfgang Denk <wd@denx.de>
Sat, 10 Dec 2011 22:14:01 +0000 (23:14 +0100)
Signed-off-by: Christian Riesch <christian.riesch@omicron.at>
Cc: Tom Rini <trini@ti.com>
Cc: Heiko Schocher <hs@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
arch/arm/cpu/arm926ejs/davinci/timer.c

index c7bf7a5ad2569c58eb699ee4c645480740201791..a06d449553839e609ad9302cc06fc1ce515e0aab 100644 (file)
@@ -40,6 +40,7 @@
 #include <common.h>
 #include <asm/io.h>
 #include <asm/arch/timer_defs.h>
+#include <div64.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -86,14 +87,15 @@ ulong get_timer(ulong base)
 
        timer_diff = get_ticks() - gd->timer_reset_value;
 
-       return (timer_diff / (gd->timer_rate_hz / CONFIG_SYS_HZ)) - base;
+       return lldiv(timer_diff, (gd->timer_rate_hz / CONFIG_SYS_HZ)) - base;
 }
 
 void __udelay(unsigned long usec)
 {
        unsigned long long endtime;
 
-       endtime = ((unsigned long long)usec * gd->timer_rate_hz) / 1000000UL;
+       endtime = lldiv((unsigned long long)usec * gd->timer_rate_hz,
+                       1000000UL);
        endtime += get_ticks();
 
        while (get_ticks() < endtime)