[U-Boot] [PATCH] PXA: Fix up the timer

8 Aug
2012
8 Aug
'12
12:52 p.m.
Add missing functions into the timer, so CONFIG_CMD_TIME works.
Signed-off-by: Marek Vasut marex@denx.de Cc: Albert Aribaud albert.u.boot@aribaud.net --- arch/arm/cpu/pxa/timer.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/arch/arm/cpu/pxa/timer.c b/arch/arm/cpu/pxa/timer.c index a8f7462..d394f79 100644 --- a/arch/arm/cpu/pxa/timer.c +++ b/arch/arm/cpu/pxa/timer.c @@ -78,9 +78,14 @@ unsigned long long get_ticks(void) return timestamp; }
+ulong get_timer_masked() +{ + return tick_to_time(get_ticks()); +} + ulong get_timer(ulong base) { - return tick_to_time(get_ticks()) - base; + return get_timer_masked() - base; }
void __udelay(unsigned long usec)
--
1.7.10.4
4656
Age (days ago)
4656
Last active (days ago)
0 comments
1 participants
participants (1)
-
Marek Vasut