patch-2.4.20 linux-2.4.20/include/asm-x86_64/delay.h

Next file: linux-2.4.20/include/asm-x86_64/desc.h
Previous file: linux-2.4.20/include/asm-x86_64/debugreg.h
Back to the patch index
Back to the overall index

diff -urN linux-2.4.19/include/asm-x86_64/delay.h linux-2.4.20/include/asm-x86_64/delay.h
@@ -0,0 +1,20 @@
+#ifndef _X8664_DELAY_H
+#define _X8664_DELAY_H
+
+/*
+ * Copyright (C) 1993 Linus Torvalds
+ *
+ * Delay routines calling functions in arch/i386/lib/delay.c
+ */
+ 
+extern void __bad_udelay(void);
+
+extern void __udelay(unsigned long usecs);
+extern void __const_udelay(unsigned long usecs);
+extern void __delay(unsigned long loops);
+
+#define udelay(n) (__builtin_constant_p(n) ? \
+	((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c6ul)) : \
+	__udelay(n))
+
+#endif /* defined(_X8664_DELAY_H) */

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)