Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86: Fix misspelled Kconfig symbols

Fix misspelled Kconfig symbols as detected by
scripts/checkkconfigsymbols.py.

[ bp: Combine into a single patch. ]

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210803113531.30720-7-lukas.bulwahn@gmail.com

authored by

Lukas Bulwahn and committed by
Borislav Petkov
6bf8a55d 3fd3590b

+4 -4
+1 -1
arch/x86/include/asm/ia32.h
··· 68 68 69 69 #endif 70 70 71 - #endif /* !CONFIG_IA32_SUPPORT */ 71 + #endif /* CONFIG_IA32_EMULATION */ 72 72 73 73 #endif /* _ASM_X86_IA32_H */
+1 -1
arch/x86/include/asm/irq_stack.h
··· 58 58 * the output constraints to make the compiler aware that R11 cannot be 59 59 * reused after the asm() statement. 60 60 * 61 - * For builds with CONFIG_UNWIND_FRAME_POINTER ASM_CALL_CONSTRAINT is 61 + * For builds with CONFIG_UNWINDER_FRAME_POINTER, ASM_CALL_CONSTRAINT is 62 62 * required as well as this prevents certain creative GCC variants from 63 63 * misplacing the ASM code. 64 64 *
+1 -1
arch/x86/include/asm/page_32.h
··· 43 43 { 44 44 memcpy(to, from, PAGE_SIZE); 45 45 } 46 - #endif /* CONFIG_X86_3DNOW */ 46 + #endif /* CONFIG_X86_USE_3DNOW */ 47 47 #endif /* !__ASSEMBLY__ */ 48 48 49 49 #endif /* _ASM_X86_PAGE_32_H */
+1 -1
arch/x86/include/asm/uaccess.h
··· 411 411 : [umem] "m" (__m(addr)), \ 412 412 [efault] "i" (-EFAULT), "0" (err)) 413 413 414 - #endif // CONFIG_CC_ASM_GOTO_OUTPUT 414 + #endif // CONFIG_CC_HAS_ASM_GOTO_OUTPUT 415 415 416 416 /* FIXME: this hack is definitely wrong -AK */ 417 417 struct __large_struct { unsigned long buf[100]; };