diff options
author | Darwin Rambo | 2013-12-19 15:06:12 -0800 |
---|---|---|
committer | Tom Rini | 2014-01-24 16:59:06 -0500 |
commit | de351d6be6868270db21ed8a0f89d3ef703bc18e (patch) | |
tree | ac7f3183bfb5b90a9ac2bd5695ff2eacc45af466 /board/sandbox | |
parent | f28bea0003536976ebe2fb299cfc140702fec489 (diff) |
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 'board/sandbox')
-rw-r--r-- | board/sandbox/sandbox/sandbox.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/board/sandbox/sandbox/sandbox.c b/board/sandbox/sandbox/sandbox.c index 65dcce804bb..95efaffcb1f 100644 --- a/board/sandbox/sandbox/sandbox.c +++ b/board/sandbox/sandbox/sandbox.c @@ -23,11 +23,6 @@ unsigned long timer_read_counter(void) return os_get_nsec() / 1000; } -int timer_init(void) -{ - return 0; -} - int dram_init(void) { gd->ram_size = CONFIG_SYS_SDRAM_SIZE; |