[tip: x86/cleanups] x86/cpu: Remove unnecessary __maybe_unused annotations

tip-bot2 for Thorsten Blum posted 1 patch 2 days, 5 hours ago
arch/x86/kernel/cpu/common.c          | 2 +-
arch/x86/kernel/cpu/microcode/amd.c   | 3 +--
arch/x86/kernel/cpu/topology_common.c | 2 +-
3 files changed, 3 insertions(+), 4 deletions(-)
[tip: x86/cleanups] x86/cpu: Remove unnecessary __maybe_unused annotations
Posted by tip-bot2 for Thorsten Blum 2 days, 5 hours ago
The following commit has been merged into the x86/cleanups branch of tip:

Commit-ID:     10b45e63a5b010be59ecbd2e437744adb12f838a
Gitweb:        https://git.kernel.org/tip/10b45e63a5b010be59ecbd2e437744adb12f838a
Author:        Thorsten Blum <thorsten.blum@linux.dev>
AuthorDate:    Tue, 30 Jun 2026 10:30:30 +02:00
Committer:     Borislav Petkov (AMD) <bp@alien8.de>
CommitterDate: Wed, 22 Jul 2026 09:09:44 -07:00

x86/cpu: Remove unnecessary __maybe_unused annotations

Remove __maybe_unused from variables and functions that are referenced
unconditionally.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://patch.msgid.link/20260630083031.683508-2-thorsten.blum@linux.dev
---
 arch/x86/kernel/cpu/common.c          | 2 +-
 arch/x86/kernel/cpu/microcode/amd.c   | 3 +--
 arch/x86/kernel/cpu/topology_common.c | 2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index a3df21d..63cab05 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -1651,7 +1651,7 @@ static inline bool parse_set_clear_cpuid(char *arg, bool set)
 	int taint = 0;
 
 	while (arg) {
-		bool found __maybe_unused = false;
+		bool found = false;
 		unsigned int bit;
 
 		opt = strsep(&arg, ",");
diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
index 531dfb7..6cdc410 100644
--- a/arch/x86/kernel/cpu/microcode/amd.c
+++ b/arch/x86/kernel/cpu/microcode/amd.c
@@ -136,8 +136,7 @@ struct cont_desc {
  * Microcode patch container file is prepended to the initrd in cpio
  * format. See Documentation/arch/x86/microcode.rst
  */
-static const char
-ucode_path[] __maybe_unused = "kernel/x86/microcode/AuthenticAMD.bin";
+static const char ucode_path[] = "kernel/x86/microcode/AuthenticAMD.bin";
 
 /*
  * This is CPUID(1).EAX on the BSP. It is used in two ways:
diff --git a/arch/x86/kernel/cpu/topology_common.c b/arch/x86/kernel/cpu/topology_common.c
index cf75134..f0b0a91 100644
--- a/arch/x86/kernel/cpu/topology_common.c
+++ b/arch/x86/kernel/cpu/topology_common.c
@@ -62,7 +62,7 @@ const char *get_topology_cpu_type_name(struct cpuinfo_x86 *c)
 	}
 }
 
-static unsigned int __maybe_unused parse_num_cores_legacy(struct cpuinfo_x86 *c)
+static unsigned int parse_num_cores_legacy(struct cpuinfo_x86 *c)
 {
 	struct {
 		u32	cache_type	:  5,