This function belongs in time.h so move it over and update the comment
style.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
void irq_free_handler (int);
void reset_timer (void);
-/* Return value of monotonic microsecond timer */
-unsigned long timer_get_us(void);
-
void enable_interrupts (void);
int disable_interrupts (void);
*/
void wait_ticks(unsigned long ticks);
+/**
+ * timer_get_us() - Get monotonic microsecond timer
+ *
+ * @return value of monotonic microsecond timer
+ */
+unsigned long timer_get_us(void);
+
#endif /* _TIME_H */