[PATCH] x86/cpu/topology: Drop redundant CONFIG_X86_LOCAL_APIC check

From: Chang S. Bae
Date: Sat Aug 23 2025 - 11:54:57 EST


topology.c is only built when CONFIG_X86_LOCAL_APIC=y, so the #ifdef
there is unnecessary. Remove it.

Signed-off-by: Chang S. Bae <chang.seok.bae@xxxxxxxxx>
---
arch/x86/kernel/cpu/topology.c | 2 --
1 file changed, 2 deletions(-)

diff --git a/arch/x86/kernel/cpu/topology.c b/arch/x86/kernel/cpu/topology.c
index e35ccdc84910..dcf05c64dd82 100644
--- a/arch/x86/kernel/cpu/topology.c
+++ b/arch/x86/kernel/cpu/topology.c
@@ -416,7 +416,6 @@ void topology_hotunplug_apic(unsigned int cpu)
}
#endif

-#ifdef CONFIG_X86_LOCAL_APIC
static unsigned int max_possible_cpus __initdata = NR_CPUS;

/**
@@ -569,4 +568,3 @@ static int __init setup_possible_cpus(char *str)
return 0;
}
early_param("possible_cpus", setup_possible_cpus);
-#endif
--
2.48.1