You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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) */
|
|
|