diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:30 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:13 -0500 |
commit | 1045315df0f1bed617f0ee01379a10f543cec501 (patch) | |
tree | 3e76715bb70bfe6019e0b2bbb7f665b5b7830b8d /board | |
parent | f0143a86af1cafff17ac9893015374f0f2f6ae06 (diff) |
common: Move get_ticks() function out of common.h
This function belongs in time.h so move it over and add a comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/armltd/integrator/timer.c | 1 | ||||
-rw-r--r-- | board/broadcom/bcmstb/bcmstb.c | 1 | ||||
-rw-r--r-- | board/xilinx/versal/board.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/armltd/integrator/timer.c b/board/armltd/integrator/timer.c index 7ecfa49c70..e65ae997fd 100644 --- a/board/armltd/integrator/timer.c +++ b/board/armltd/integrator/timer.c @@ -18,6 +18,7 @@ #include <common.h> #include <div64.h> +#include <time.h> #ifdef CONFIG_ARCH_CINTEGRATOR #define DIV_CLOCK_INIT 1 diff --git a/board/broadcom/bcmstb/bcmstb.c b/board/broadcom/bcmstb/bcmstb.c index 5fc2c0591b..23500dfa69 100644 --- a/board/broadcom/bcmstb/bcmstb.c +++ b/board/broadcom/bcmstb/bcmstb.c @@ -6,6 +6,7 @@ * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> */ +#include <time.h> #include <linux/types.h> #include <common.h> #include <env.h> diff --git a/board/xilinx/versal/board.c b/board/xilinx/versal/board.c index abdd580c01..75056aa3d9 100644 --- a/board/xilinx/versal/board.c +++ b/board/xilinx/versal/board.c @@ -7,6 +7,7 @@ #include <common.h> #include <fdtdec.h> #include <malloc.h> +#include <time.h> #include <asm/io.h> #include <asm/arch/hardware.h> #include <asm/arch/sys_proto.h> |