Go to the documentation of this file.
15 #ifndef _ASM_TILE_DELAY_H
16 #define _ASM_TILE_DELAY_H
24 extern void __delay(
unsigned long loops);
26 #define udelay(n) (__builtin_constant_p(n) ? \
27 ((n) > 20000 ? __bad_udelay() : __ndelay((n) * 1000)) : \
30 #define ndelay(n) (__builtin_constant_p(n) ? \
31 ((n) > 20000 ? __bad_ndelay() : __ndelay(n)) : \