123456789101112131415161718192021222324252627 |
- #ifndef _CRIS_DELAY_H
- #define _CRIS_DELAY_H
- #include <arch/delay.h>
- extern unsigned long loops_per_usec;
- #ifndef udelay
- static inline void udelay(unsigned long usecs)
- {
- __delay(usecs * loops_per_usec);
- }
- #endif
- #endif
|