diff options
author | Nick Piggin <npiggin@suse.de> | 2007-07-21 04:37:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 17:49:13 -0700 |
commit | 71133027febfabd501fde7583b30008224f4d799 (patch) | |
tree | 6b34dc480e5a64c35f9c3c9016cae6c2368ed71d /include | |
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>
Diffstat (limited to 'include')
-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) #define stts() write_cr0(8 | read_cr0()) #define wbinvd() \ - __asm__ __volatile__ ("wbinvd": : :"memory"); + __asm__ __volatile__ ("wbinvd": : :"memory") #endif /* __KERNEL__ */ |