summaryrefslogtreecommitdiffstats
path: root/board/integratorcp
diff options
context:
space:
mode:
authorSergei Poselenov <sposelenov@emcraft.com>2008-08-14 14:08:28 +0200
committerWolfgang Denk <wd@denx.de>2008-09-09 02:14:41 +0200
commit4265c35fbcb248e58179007621d61d32d0b3b82a (patch)
tree4a97e0570b7b11a9ae895bf9fd0be14d51461b0f /board/integratorcp
parent1055171ed05b7c4885737463d52b8d6c013bcb5d (diff)
downloadblackbird-obmc-uboot-4265c35fbcb248e58179007621d61d32d0b3b82a.tar.gz
blackbird-obmc-uboot-4265c35fbcb248e58179007621d61d32d0b3b82a.zip
ARM: Use do_div() instead of division for "long long".
Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/integratorcp')
-rw-r--r--board/integratorcp/integratorcp.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/board/integratorcp/integratorcp.c b/board/integratorcp/integratorcp.c
index d6d6e13d5a..220513f329 100644
--- a/board/integratorcp/integratorcp.c
+++ b/board/integratorcp/integratorcp.c
@@ -34,6 +34,7 @@
*/
#include <common.h>
+#include <div64.h>
DECLARE_GLOBAL_DATA_PTR;
@@ -244,7 +245,11 @@ ulong get_timer_masked (void)
total_count += lastdec - now;
}
lastdec = now;
- timestamp = (ulong)(total_count/div_timer);
+
+ /* Reuse "now" */
+ now = total_count;
+ do_div(now, div_timer);
+ timestamp = now;
return timestamp;
}
OpenPOWER on IntegriCloud