aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-07-09 09:12:55 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-09 09:13:59 +0200
commitf8dd0d3c62164160c59034a96eb17d69ac8a0328 (patch)
tree45467eac3c765ec8157b7a985c21b7ee2039a6f2 /include
parentf0fbf0abc093ec8bf64506eee4ede9e5daf40ffd (diff)
x86: delay lib unification build fix
fix: arch/x86/lib/delay.c:93:24: error: macro "use_tsc_delay" passed 1 arguments, but takes just 0 arch/x86/lib/delay.c:94: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/delay.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/asm-x86/delay.h b/include/asm-x86/delay.h
index bb80880c834..409a649204a 100644
--- a/include/asm-x86/delay.h
+++ b/include/asm-x86/delay.h
@@ -26,10 +26,6 @@ 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 */