aboutsummaryrefslogtreecommitdiff
path: root/include/asm-x86/delay.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/delay.h')
-rw-r--r--include/asm-x86/delay.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/delay.h b/include/asm-x86/delay.h
index 409a649204a..bb80880c834 100644
--- a/include/asm-x86/delay.h
+++ b/include/asm-x86/delay.h
@@ -26,6 +26,10 @@ extern void __delay(unsigned long loops);
((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
__ndelay(n))
+#ifdef CONFIG_X86_32
void use_tsc_delay(void);
+#else
+#define use_tsc_delay() {}
+#endif
#endif /* _ASM_X86_DELAY_H */