patch-2.4.22 linux-2.4.22/include/asm-sh/delay.h
Next file: linux-2.4.22/include/asm-sh/hitachi_hs7729pci.h
Previous file: linux-2.4.22/include/asm-sh/cachectl.h
Back to the patch index
Back to the overall index
- Lines: 17
- Date:
2003-08-25 04:44:44.000000000 -0700
- Orig file:
linux-2.4.21/include/asm-sh/delay.h
- Orig date:
2001-01-04 13:19:13.000000000 -0800
diff -urN linux-2.4.21/include/asm-sh/delay.h linux-2.4.22/include/asm-sh/delay.h
@@ -10,6 +10,7 @@
extern void __bad_udelay(void);
extern void __udelay(unsigned long usecs);
+extern void __ndelay(unsigned long nsecs);
extern void __const_udelay(unsigned long usecs);
extern void __delay(unsigned long loops);
@@ -17,4 +18,8 @@
((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c6ul)) : \
__udelay(n))
+#define ndelay(n) (__builtin_constant_p(n) ? \
+ ((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
+ __ndelay(n))
+
#endif /* __ASM_SH_DELAY_H */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)