On Tue, Sep 20, 2022, flyingpeng(彭浩) wrote: > Keep all constants using lowercase "x". > > Signed-off-by: Peng Hao <flyingpeng@xxxxxxxxxxx> > --- > arch/x86/include/asm/vmx.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/include/asm/vmx.h b/arch/x86/include/asm/vmx.h > index 0ffaa3156a4e..d1791b612170 100644 > --- a/arch/x86/include/asm/vmx.h > +++ b/arch/x86/include/asm/vmx.h > @@ -296,7 +296,7 @@ enum vmcs_field { > GUEST_LDTR_AR_BYTES = 0x00004820, > GUEST_TR_AR_BYTES = 0x00004822, > GUEST_INTERRUPTIBILITY_INFO = 0x00004824, > - GUEST_ACTIVITY_STATE = 0X00004826, > + GUEST_ACTIVITY_STATE = 0x00004826, Heh, I'm somewhat surprised clang didn't throw an error on this. Reviewed-by: Sean Christopherson <seanjc@xxxxxxxxxx>