diff mbox

[U-Boot] PXA: Fix up the timer

Message ID 1344423166-18656-1-git-send-email-marex@denx.de
State Accepted
Delegated to: Albert ARIBAUD
Headers show

Commit Message

Marek Vasut Aug. 8, 2012, 10:52 a.m. UTC
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 mbox

Patch

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)