patch-2.2.15 linux/include/asm-i386/delay.h
Next file: linux/include/asm-i386/pgtable.h
Previous file: linux/include/asm-arm/pgtable.h
Back to the patch index
Back to the overall index
- Lines: 16
- Date:
Fri Apr 21 12:46:49 2000
- Orig file:
v2.2.14/include/asm-i386/delay.h
- Orig date:
Sat Nov 29 20:56:42 1997
diff -u --new-file --recursive --exclude-from ../../exclude v2.2.14/include/asm-i386/delay.h linux/include/asm-i386/delay.h
@@ -7,12 +7,13 @@
* Delay routines calling functions in arch/i386/lib/delay.c
*/
-extern void __udelay(unsigned long usecs);
extern void __const_udelay(unsigned long usecs);
+extern void __udelay(unsigned long usecs);
extern void __delay(unsigned long loops);
+
#define udelay(n) (__builtin_constant_p(n) ? \
__const_udelay((n) * 0x10c6ul) : \
__udelay(n))
-
+
#endif /* defined(_I386_DELAY_H) */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)