Skip to content

Commit

Permalink
x86: Fix misspelled Kconfig symbols
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
bulwahn authored and suryasaimadhu committed Oct 5, 2021
1 parent 3fd3590 commit 6bf8a55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arch/x86/include/asm/ia32.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ extern void ia32_pick_mmap_layout(struct mm_struct *mm);

#endif

#endif /* !CONFIG_IA32_SUPPORT */
#endif /* CONFIG_IA32_EMULATION */

#endif /* _ASM_X86_IA32_H */
2 changes: 1 addition & 1 deletion arch/x86/include/asm/irq_stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
* the output constraints to make the compiler aware that R11 cannot be
* reused after the asm() statement.
*
* For builds with CONFIG_UNWIND_FRAME_POINTER ASM_CALL_CONSTRAINT is
* For builds with CONFIG_UNWINDER_FRAME_POINTER, ASM_CALL_CONSTRAINT is
* required as well as this prevents certain creative GCC variants from
* misplacing the ASM code.
*
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/include/asm/page_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static inline void copy_page(void *to, void *from)
{
memcpy(to, from, PAGE_SIZE);
}
#endif /* CONFIG_X86_3DNOW */
#endif /* CONFIG_X86_USE_3DNOW */
#endif /* !__ASSEMBLY__ */

#endif /* _ASM_X86_PAGE_32_H */
2 changes: 1 addition & 1 deletion arch/x86/include/asm/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ do { \
: [umem] "m" (__m(addr)), \
[efault] "i" (-EFAULT), "0" (err))

#endif // CONFIG_CC_ASM_GOTO_OUTPUT
#endif // CONFIG_CC_HAS_ASM_GOTO_OUTPUT

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

0 comments on commit 6bf8a55

Please sign in to comment.