mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-02 02:34:05 +08:00
12 lines
225 B
C
12 lines
225 B
C
|
#ifndef __LINUX_CPUTIME_H
|
||
|
#define __LINUX_CPUTIME_H
|
||
|
|
||
|
#include <asm/cputime.h>
|
||
|
|
||
|
#ifndef nsecs_to_cputime
|
||
|
# define nsecs_to_cputime(__nsecs) \
|
||
|
usecs_to_cputime((__nsecs) / NSEC_PER_USEC)
|
||
|
#endif
|
||
|
|
||
|
#endif /* __LINUX_CPUTIME_H */
|