mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
17 lines
337 B
C
17 lines
337 B
C
![]() |
/*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef _TIME_H
|
||
|
#define _TIME_H
|
||
|
|
||
|
unsigned long get_timer(unsigned long base);
|
||
|
|
||
|
/*
|
||
|
* Return the current value of a monotonically increasing microsecond timer.
|
||
|
* Granularity may be larger than 1us if hardware does not support this.
|
||
|
*/
|
||
|
unsigned long timer_get_us(void);
|
||
|
|
||
|
#endif /* _TIME_H */
|