projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4d198d
)
x86_64: wbinvd macro fix
author
Nick Piggin
<npiggin@suse.de>
Sat, 21 Jul 2007 11:37:17 +0000
(
04:37
-0700)
committer
Linus Torvalds
<torvalds@woody.linux-foundation.org>
Sun, 22 Jul 2007 00:49:13 +0000
(17:49 -0700)
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>
include/asm-x86_64/system.h
patch
|
blob
|
history
diff --git
a/include/asm-x86_64/system.h
b/include/asm-x86_64/system.h
index e4f246d62c46bf57c6218df7738ca17dc6356671..6313d33a06869f8e564feec78d86357f669302cd 100644
(file)
--- 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__ */