diff options
author | Darwin Rambo <drambo@broadcom.com> | 2013-12-19 15:06:12 -0800 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-01-24 16:59:06 -0500 |
commit | de351d6be6868270db21ed8a0f89d3ef703bc18e (patch) | |
tree | ac7f3183bfb5b90a9ac2bd5695ff2eacc45af466 /arch/arm/cpu | |
parent | f28bea0003536976ebe2fb299cfc140702fec489 (diff) | |
download | u-boot-imx-de351d6be6868270db21ed8a0f89d3ef703bc18e.zip u-boot-imx-de351d6be6868270db21ed8a0f89d3ef703bc18e.tar.gz u-boot-imx-de351d6be6868270db21ed8a0f89d3ef703bc18e.tar.bz2 |
lib: time: add weak timer_init() function
If timer_init() is made a weak stub function, then it allows us to
remove several empty timer_init functions for those boards that
already have a timer initialized when u-boot starts. Architectures
that use the timer framework may also remove the need for timer.c.
Signed-off-by: Darwin Rambo <drambo@broadcom.com>
Reviewed-by: Tim Kryger <tim.kryger@linaro.org>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm1176/bcm2835/timer.c | 5 | ||||
-rw-r--r-- | arch/arm/cpu/sa1100/timer.c | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/cpu/arm1176/bcm2835/timer.c b/arch/arm/cpu/arm1176/bcm2835/timer.c index 2edd671..017907c 100644 --- a/arch/arm/cpu/arm1176/bcm2835/timer.c +++ b/arch/arm/cpu/arm1176/bcm2835/timer.c @@ -18,11 +18,6 @@ #include <asm/io.h> #include <asm/arch/timer.h> -int timer_init(void) -{ - return 0; -} - ulong get_timer_us(ulong base) { struct bcm2835_timer_regs *regs = diff --git a/arch/arm/cpu/sa1100/timer.c b/arch/arm/cpu/sa1100/timer.c index 4b981e4..0a0006b 100644 --- a/arch/arm/cpu/sa1100/timer.c +++ b/arch/arm/cpu/sa1100/timer.c @@ -13,11 +13,6 @@ #include <common.h> #include <SA-1100.h> -int timer_init (void) -{ - return 0; -} - ulong get_timer (ulong base) { return get_timer_masked (); |