summaryrefslogtreecommitdiff
path: root/kvm_vmx.c
diff options
context:
space:
mode:
authorRobert Mustacchi <rm@joyent.com>2012-03-08 00:41:46 +0000
committerRobert Mustacchi <rm@joyent.com>2012-03-08 00:41:46 +0000
commit9621d5228ac4dbdd99cdfe8f2946e7315261a893 (patch)
tree488c0b64195ad83c993bb2bf67a12763937811ee /kvm_vmx.c
parent76be9d4d13f5c5d32d915820bbf956b73fd89aab (diff)
downloadillumos-kvm-9621d5228ac4dbdd99cdfe8f2946e7315261a893.tar.gz
HVM-719 kvm should build with gcc 4.4.420120517
Diffstat (limited to 'kvm_vmx.c')
-rw-r--r--kvm_vmx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvm_vmx.c b/kvm_vmx.c
index c04d0eb..c61b589 100644
--- a/kvm_vmx.c
+++ b/kvm_vmx.c
@@ -13,7 +13,7 @@
* This work is licensed under the terms of the GNU GPL, version 2. See
* the COPYING file in the top-level directory.
*
- * Copyright 2011 Joyent, Inc. All Rights Reserved.
+ * Copyright (c) 2012 Joyent, Inc. All rights reserved.
*/
#include <sys/sysmacros.h>
@@ -1376,7 +1376,7 @@ kvm_cpu_vmxoff(void)
KVM_TRACE(vmx__vmxoff);
/* BEGIN CSTYLED */
- __asm__ volatile ((ASM_VMX_VMXOFF) : : : "cc");
+ __asm__ volatile (ASM_VMX_VMXOFF : : : "cc");
/* END CSTYLED */
setcr4(getcr4() & ~X86_CR4_VMXE);
}