diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:26 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:11 -0500 |
commit | 6887c5bed9d7dc26f8dbd196a5878c9c4a128d94 (patch) | |
tree | d121bf5587037ff6cb28356d764809c2f808b909 /arch/m68k | |
parent | 6c03f9e618f4a94900bdd5857117811e21ffb959 (diff) | |
download | u-boot-6887c5bed9d7dc26f8dbd196a5878c9c4a128d94.tar.gz |
common: Move some time functions out of common.h
These functions belong in time.h so move them over and add comments.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/lib/time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/m68k/lib/time.c b/arch/m68k/lib/time.c index a6345a0bc9..c76c5fedc9 100644 --- a/arch/m68k/lib/time.c +++ b/arch/m68k/lib/time.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <time.h> #include <asm/timer.h> #include <asm/immap.h> |