summaryrefslogtreecommitdiff
path: root/arch/arm/mach-bcmstb
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@fitzsim.org>2018-08-16 04:33:49 +0300
committerTom Rini <trini@konsulko.com>2018-08-24 20:20:19 +0300
commita5e34fc0b628627cbda444a19a896895cfb4c552 (patch)
tree4df4d6f021576e33c0ebdfac4fce6aa4e8062843 /arch/arm/mach-bcmstb
parent0b600918d5fecec3a31ee54d80e5e0484de34f46 (diff)
downloadu-boot-a5e34fc0b628627cbda444a19a896895cfb4c552.tar.xz
board: arm: bcmstb: Declare get_ticks in timer.h
In an earlier proposed patch, bcmstb.c implemented timer_read_counter, but it was updated to implement get_ticks instead. This patch updates the declaration in timer.h accordingly. Signed-off-by: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Diffstat (limited to 'arch/arm/mach-bcmstb')
-rw-r--r--arch/arm/mach-bcmstb/include/mach/timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-bcmstb/include/mach/timer.h b/arch/arm/mach-bcmstb/include/mach/timer.h
index d05b4d64fe..039dd664c2 100644
--- a/arch/arm/mach-bcmstb/include/mach/timer.h
+++ b/arch/arm/mach-bcmstb/include/mach/timer.h
@@ -8,6 +8,6 @@
#ifndef _BCMSTB_TIMER_H
#define _BCMSTB_TIMER_H
-unsigned long timer_read_counter(void);
+uint64_t get_ticks(void);
#endif /* _BCMSTB_TIMER_H */