[PATCH 09/14] x86: fix typos in comments

From: Hemanth Selam

Date: Mon Sep 07 2026 - 03:05:47 EST


Fix typos in comments, reported by scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@xxxxxxxxx>
---
arch/x86/include/asm/iosf_mbi.h | 2 +-
arch/x86/include/asm/processor.h | 2 +-
arch/x86/kernel/cpu/common.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/x86/include/asm/iosf_mbi.h b/arch/x86/include/asm/iosf_mbi.h
index 8ace6559d399..386f285736ce 100644
--- a/arch/x86/include/asm/iosf_mbi.h
+++ b/arch/x86/include/asm/iosf_mbi.h
@@ -137,7 +137,7 @@ void iosf_mbi_punit_release(void);
*
* Note this function may be called multiple times and the bus will not
* be released until iosf_mbi_unblock_punit_i2c_access() has been called the
- * same amount of times.
+ * same number of times.
*
* Return: Nonzero on error
*/
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
index ec9db0dfa0df..0709e5e1b004 100644
--- a/arch/x86/include/asm/processor.h
+++ b/arch/x86/include/asm/processor.h
@@ -373,7 +373,7 @@ struct x86_hw_tss {
(offsetof(struct tss_struct, x86_tss) + sizeof(struct x86_hw_tss) - 1)
#endif

-/* Base offset outside of TSS_LIMIT so unpriviledged IO causes #GP */
+/* Base offset outside of TSS_LIMIT so unprivileged IO causes #GP */
#define IO_BITMAP_OFFSET_INVALID (__KERNEL_TSS_LIMIT + 1)

struct entry_stack {
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index c7352827f491..bbf4963c1983 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -2628,7 +2628,7 @@ void __init arch_cpu_finalize_init(void)
fpu__init_cpu();

/*
- * This needs to follow the FPU initializtion, since EFI depends on it.
+ * This needs to follow the FPU initialization, since EFI depends on it.
*/
if (efi_enabled(EFI_RUNTIME_SERVICES))
efi_enter_virtual_mode();