arm: Correct signature for get_ticks()

This should be uint64_t to match its definition in common.h. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2017-05-11 22:03:38 -04:00
committed by Tom Rini
parent 88b6329cce
commit f97cae9575
+1 -1
View File
@@ -43,7 +43,7 @@ unsigned long timer_read_counter(void)
return cntpct;
}
unsigned long long get_ticks(void)
uint64_t get_ticks(void)
{
unsigned long ticks = timer_read_counter();