diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:27 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:11 -0500 |
commit | 036a017f79f6c485605c555b3a8733debb72d995 (patch) | |
tree | eddaffdc3c686df9e6d3116f4a9a3142784e1e90 /drivers/timer | |
parent | 6887c5bed9d7dc26f8dbd196a5878c9c4a128d94 (diff) | |
download | u-boot-036a017f79f6c485605c555b3a8733debb72d995.tar.gz |
common: Move wait_ticks functions 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 'drivers/timer')
-rw-r--r-- | drivers/timer/mpc83xx_timer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/timer/mpc83xx_timer.c b/drivers/timer/mpc83xx_timer.c index dfbc8672b2..69949d5333 100644 --- a/drivers/timer/mpc83xx_timer.c +++ b/drivers/timer/mpc83xx_timer.c @@ -9,6 +9,7 @@ #include <clk.h> #include <dm.h> #include <status_led.h> +#include <time.h> #include <timer.h> #include <watchdog.h> |