diff options
author | Nick Piggin <npiggin@suse.de> | 2007-07-21 07:37:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 20:49:13 -0400 |
commit | 71133027febfabd501fde7583b30008224f4d799 (patch) | |
tree | 6b34dc480e5a64c35f9c3c9016cae6c2368ed71d | |
parent | c4d198d5183ec7bbf8b53216cfc5ded7ebb0ec0c (diff) |
x86_64: wbinvd macro fix
Too many semicolons in this macro.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/asm-x86_64/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86_64/system.h b/include/asm-x86_64/system.h index e4f246d62c46..6313d33a0686 100644 --- a/include/asm-x86_64/system.h +++ b/include/asm-x86_64/system.h | |||
@@ -109,7 +109,7 @@ static inline void write_cr4(unsigned long val) | |||
109 | #define stts() write_cr0(8 | read_cr0()) | 109 | #define stts() write_cr0(8 | read_cr0()) |
110 | 110 | ||
111 | #define wbinvd() \ | 111 | #define wbinvd() \ |
112 | __asm__ __volatile__ ("wbinvd": : :"memory"); | 112 | __asm__ __volatile__ ("wbinvd": : :"memory") |
113 | 113 | ||
114 | #endif /* __KERNEL__ */ | 114 | #endif /* __KERNEL__ */ |
115 | 115 | ||