mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +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;
|
||||
}
|
||||
|
||||
unsigned long long get_ticks(void)
|
||||
uint64_t get_ticks(void)
|
||||
{
|
||||
unsigned long ticks = timer_read_counter();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue