2013-08-29 14:13:17

by Jan-Simon Möller

[permalink] [raw]
Subject: [PATCH] [TRIVIAL] Remove braces in arch/x86/kernel/cpu/vmware.c to fix build for clang. No functional change otherwise.

From: Jan-Simon M?ller <[email protected]>

Author: PaX Team <pageexec at freemail.hu>
ML-Post: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120507/142707.html
URL: http://llvm.linuxfoundation.org

Merge: Jan-Simon M?ller <dl9pf at gmx.de>

Description:
Clang chokes on the notation "inl (%dx)" but works for "inl %dx";
GNU as accepts both forms.

Signed-off-by: Jan-Simon M?ller <[email protected]>

CC: Jan-Simon M?ller <[email protected]>
CC: PaX Team <[email protected]>
CC: Behan Webster <[email protected]>
CC: Doug Covelli <[email protected]>
CC: Dan Hecht <[email protected]>
CC: [email protected]
---
arch/x86/kernel/cpu/vmware.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/vmware.c b/arch/x86/kernel/cpu/vmware.c
index 628a059..32ef12c 100644
--- a/arch/x86/kernel/cpu/vmware.c
+++ b/arch/x86/kernel/cpu/vmware.c
@@ -38,7 +38,7 @@
#define VMWARE_PORT_CMD_VCPU_RESERVED 31

#define VMWARE_PORT(cmd, eax, ebx, ecx, edx) \
- __asm__("inl (%%dx)" : \
+ __asm__("inl %%dx" : \
"=a"(eax), "=c"(ecx), "=d"(edx), "=b"(ebx) : \
"0"(VMWARE_HYPERVISOR_MAGIC), \
"1"(VMWARE_PORT_CMD_##cmd), \
--
1.8.1.4