commit | f97cae95759efd4dbb19acdde201a1f13815832a | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed Apr 05 17:53:17 2017 -0600 |
committer | Tom Rini <trini@konsulko.com> | Thu May 11 22:03:38 2017 -0400 |
tree | bdca947eed69420960f7235334e7083aad96148d | |
parent | 88b6329cce9b344159ac7d708f8f2d6bfd98faf0 [diff] |
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>
diff --git a/arch/arm/cpu/armv8/generic_timer.c b/arch/arm/cpu/armv8/generic_timer.c index cd92b2c..a2dda33 100644 --- a/arch/arm/cpu/armv8/generic_timer.c +++ b/arch/arm/cpu/armv8/generic_timer.c
@@ -43,7 +43,7 @@ return cntpct; } -unsigned long long get_ticks(void) +uint64_t get_ticks(void) { unsigned long ticks = timer_read_counter();