summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-11-14 22:57:27 +0300
committerTom Rini <trini@konsulko.com>2019-12-03 02:23:11 +0300
commit036a017f79f6c485605c555b3a8733debb72d995 (patch)
treeeddaffdc3c686df9e6d3116f4a9a3142784e1e90 /include
parent6887c5bed9d7dc26f8dbd196a5878c9c4a128d94 (diff)
downloadu-boot-036a017f79f6c485605c555b3a8733debb72d995.tar.xz
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 'include')
-rw-r--r--include/common.h1
-rw-r--r--include/time.h10
2 files changed, 10 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 20d143deb8..091b54787f 100644
--- a/include/common.h
+++ b/include/common.h
@@ -286,7 +286,6 @@ int cleanup_before_linux_select(int flags);
/* arch/$(ARCH)/lib/ticks.S */
uint64_t get_ticks(void);
-void wait_ticks (unsigned long);
/* lib/uuid.c */
#include <uuid.h>
diff --git a/include/time.h b/include/time.h
index a1bdefc164..31d386729e 100644
--- a/include/time.h
+++ b/include/time.h
@@ -86,4 +86,14 @@ ulong usec2ticks(unsigned long usec);
*/
ulong ticks2usec(unsigned long ticks);
+/**
+ * wait_ticks() - waits a given number of ticks
+ *
+ * This is an internal function typically used to implement udelay() and
+ * similar. Normally you should use udelay() or mdelay() instead.
+ *
+ * @ticks: Number of ticks to wait
+ */
+void wait_ticks(unsigned long ticks);
+
#endif /* _TIME_H */