Skip to content

Commit c45f773

Browse files
anarazelH. Peter Anvin
authored andcommitted
x86: Fix typo in MSR_IA32_MISC_ENABLE_LIMIT_CPUID macro
The spuriously added semicolon didn't have any effect because the macro isn't currently in use. c0a639a Signed-off-by: Andres Freund <andres@anarazel.de> Link: http://lkml.kernel.org/r/1399598957-7011-3-git-send-email-andres@anarazel.de Cc: Borislav Petkov <bp@suse.de> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
1 parent 722a0d2 commit c45f773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/include/uapi/asm/msr-index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
#define MSR_IA32_MISC_ENABLE_MWAIT_BIT 18
385385
#define MSR_IA32_MISC_ENABLE_MWAIT (1ULL << MSR_IA32_MISC_ENABLE_MWAIT_BIT)
386386
#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT 22
387-
#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID (1ULL << MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT);
387+
#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID (1ULL << MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT)
388388
#define MSR_IA32_MISC_ENABLE_XTPR_DISABLE_BIT 23
389389
#define MSR_IA32_MISC_ENABLE_XTPR_DISABLE (1ULL << MSR_IA32_MISC_ENABLE_XTPR_DISABLE_BIT)
390390
#define MSR_IA32_MISC_ENABLE_XD_DISABLE_BIT 34

0 commit comments

Comments
 (0)