Skip to content

Commit 6bf8a55

Browse files
bulwahnsuryasaimadhu
authored andcommitted
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 <[email protected]> Signed-off-by: Borislav Petkov <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
1 parent 3fd3590 commit 6bf8a55

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

arch/x86/include/asm/ia32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ extern void ia32_pick_mmap_layout(struct mm_struct *mm);
6868

6969
#endif
7070

71-
#endif /* !CONFIG_IA32_SUPPORT */
71+
#endif /* CONFIG_IA32_EMULATION */
7272

7373
#endif /* _ASM_X86_IA32_H */

arch/x86/include/asm/irq_stack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* the output constraints to make the compiler aware that R11 cannot be
5959
* reused after the asm() statement.
6060
*
61-
* For builds with CONFIG_UNWIND_FRAME_POINTER ASM_CALL_CONSTRAINT is
61+
* For builds with CONFIG_UNWINDER_FRAME_POINTER, ASM_CALL_CONSTRAINT is
6262
* required as well as this prevents certain creative GCC variants from
6363
* misplacing the ASM code.
6464
*

arch/x86/include/asm/page_32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static inline void copy_page(void *to, void *from)
4343
{
4444
memcpy(to, from, PAGE_SIZE);
4545
}
46-
#endif /* CONFIG_X86_3DNOW */
46+
#endif /* CONFIG_X86_USE_3DNOW */
4747
#endif /* !__ASSEMBLY__ */
4848

4949
#endif /* _ASM_X86_PAGE_32_H */

arch/x86/include/asm/uaccess.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ do { \
411411
: [umem] "m" (__m(addr)), \
412412
[efault] "i" (-EFAULT), "0" (err))
413413

414-
#endif // CONFIG_CC_ASM_GOTO_OUTPUT
414+
#endif // CONFIG_CC_HAS_ASM_GOTO_OUTPUT
415415

416416
/* FIXME: this hack is definitely wrong -AK */
417417
struct __large_struct { unsigned long buf[100]; };

0 commit comments

Comments
 (0)