summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2022-12-08 09:43:15 +1100
committerMichael Ellerman <mpe@ellerman.id.au>2022-12-08 09:43:15 +1100
commit64fdcbcc064966bbf261bb455876dffa58858d32 (patch)
treec04f8669260656429414fa1a4259812eef37a18c /arch/powerpc
parent98c738c8cee6e5a58d4060862e2f8cf3cdc8a328 (diff)
downloadlinux-64fdcbcc064966bbf261bb455876dffa58858d32.tar.bz2
powerpc/prom: Fix 32-bit build
Add an IS_ENABLED() check to fix the build error: arch/powerpc/kernel/prom.o: in function `early_init_dt_scan_cpus': prom.c:(.init.text+0x2ea): undefined reference to `boot_cpu_node_count' Fixes: e13d23a404f2 ("powerpc: export the CPU node count") Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/prom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c
index 645f4450dfc3..4f1c920aa13e 100644
--- a/arch/powerpc/kernel/prom.c
+++ b/arch/powerpc/kernel/prom.c
@@ -336,7 +336,8 @@ static int __init early_init_dt_scan_cpus(unsigned long node,
if (type == NULL || strcmp(type, "cpu") != 0)
return 0;
- boot_cpu_node_count++;
+ if (IS_ENABLED(CONFIG_PPC64))
+ boot_cpu_node_count++;
/* Get physical cpuid */
intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);