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 /include/time.h | |
parent | f0143a86af1cafff17ac9893015374f0f2f6ae06 (diff) | |
download | u-boot-1045315df0f1bed617f0ee01379a10f543cec501.tar.gz u-boot-1045315df0f1bed617f0ee01379a10f543cec501.tar.bz2 u-boot-1045315df0f1bed617f0ee01379a10f543cec501.zip |
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 'include/time.h')
-rw-r--r-- | include/time.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h index 875a2b293e..71446c3171 100644 --- a/include/time.h +++ b/include/time.h @@ -103,4 +103,14 @@ void wait_ticks(unsigned long ticks); */ unsigned long timer_get_us(void); +/** + * get_ticks() - Get the current tick value + * + * This is an internal value used by the timer on the system. Ticks increase + * monotonically at the rate given by get_tbclk(). + * + * @return current tick value + */ +uint64_t get_ticks(void); + #endif /* _TIME_H */ |