mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 15:28:50 +00:00
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:
parent
88b6329cce
commit
f97cae9575
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ unsigned long timer_read_counter(void)
|
||||||
return cntpct;
|
return cntpct;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long long get_ticks(void)
|
uint64_t get_ticks(void)
|
||||||
{
|
{
|
||||||
unsigned long ticks = timer_read_counter();
|
unsigned long ticks = timer_read_counter();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue