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-04-05 17:53:17 -06:00 committed by Tom Rini
parent 88b6329cce
commit f97cae9575

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();