mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
16
include/linux/cputime.h
Normal file
16
include/linux/cputime.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef __LINUX_CPUTIME_H
|
||||
#define __LINUX_CPUTIME_H
|
||||
|
||||
#include <asm/cputime.h>
|
||||
|
||||
#ifndef cputime_to_nsecs
|
||||
# define cputime_to_nsecs(__ct) \
|
||||
(cputime_to_usecs(__ct) * NSEC_PER_USEC)
|
||||
#endif
|
||||
|
||||
#ifndef nsecs_to_cputime
|
||||
# define nsecs_to_cputime(__nsecs) \
|
||||
usecs_to_cputime((__nsecs) / NSEC_PER_USEC)
|
||||
#endif
|
||||
|
||||
#endif /* __LINUX_CPUTIME_H */
|
Loading…
Add table
Add a link
Reference in a new issue