diff options
author | Xiaoyao Li <xiaoyao.li@intel.com> | 2019-12-06 09:45:26 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-01-08 18:15:59 +0100 |
commit | 5e3d394fdd9e6b49cd8b28d85adff100a5bddc66 (patch) | |
tree | b07fd51ba92b6f37214e1ec291230b95111f05bf /arch/x86/include/asm/vmx.h | |
parent | KVM: VMX: Rename NMI_PENDING to NMI_WINDOW (diff) | |
download | linux-5e3d394fdd9e6b49cd8b28d85adff100a5bddc66.tar.xz linux-5e3d394fdd9e6b49cd8b28d85adff100a5bddc66.zip |
KVM: VMX: Fix the spelling of CPU_BASED_USE_TSC_OFFSETTING
The mis-spelling is found by checkpatch.pl, so fix them.
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/vmx.h')
-rw-r--r-- | arch/x86/include/asm/vmx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h index 06d4420508c5..d716fe938fc0 100644 --- a/arch/x86/include/asm/vmx.h +++ b/arch/x86/include/asm/vmx.h @@ -20,7 +20,7 @@ * Definitions of Primary Processor-Based VM-Execution Controls. */ #define CPU_BASED_INTR_WINDOW_EXITING 0x00000004 -#define CPU_BASED_USE_TSC_OFFSETING 0x00000008 +#define CPU_BASED_USE_TSC_OFFSETTING 0x00000008 #define CPU_BASED_HLT_EXITING 0x00000080 #define CPU_BASED_INVLPG_EXITING 0x00000200 #define CPU_BASED_MWAIT_EXITING 0x00000400 |