mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 23:20:51 +07:00
11 lines
225 B
C
11 lines
225 B
C
|
#ifndef __ALPHA_DELAY_H
|
||
|
#define __ALPHA_DELAY_H
|
||
|
|
||
|
extern void __delay(int loops);
|
||
|
extern void udelay(unsigned long usecs);
|
||
|
|
||
|
extern void ndelay(unsigned long nsecs);
|
||
|
#define ndelay ndelay
|
||
|
|
||
|
#endif /* defined(__ALPHA_DELAY_H) */
|