mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 09:56:40 +07:00
12 lines
337 B
C
12 lines
337 B
C
|
#ifndef __ASM_SH64_DELAY_H
|
||
|
#define __ASM_SH64_DELAY_H
|
||
|
|
||
|
extern void __delay(int loops);
|
||
|
extern void __udelay(unsigned long long usecs, unsigned long lpj);
|
||
|
extern void __ndelay(unsigned long long nsecs, unsigned long lpj);
|
||
|
extern void udelay(unsigned long usecs);
|
||
|
extern void ndelay(unsigned long nsecs);
|
||
|
|
||
|
#endif /* __ASM_SH64_DELAY_H */
|
||
|
|