Go to the documentation of this file.
14 #ifndef __UNICORE_DELAY_H__
15 #define __UNICORE_DELAY_H__
17 #include <asm/param.h>
43 #define MAX_UDELAY_MS 2
46 (__builtin_constant_p(n) ? \
47 ((n) > (MAX_UDELAY_MS * 1000) ? __bad_udelay() : \
48 __const_udelay((n) * ((2199023U*HZ)>>11))) : \