Commit 64fdcbcc authored by Michael Ellerman's avatar Michael Ellerman

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: e13d23a4 ("powerpc: export the CPU node count")
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 98c738c8
...@@ -336,7 +336,8 @@ static int __init early_init_dt_scan_cpus(unsigned long node, ...@@ -336,7 +336,8 @@ static int __init early_init_dt_scan_cpus(unsigned long node,
if (type == NULL || strcmp(type, "cpu") != 0) if (type == NULL || strcmp(type, "cpu") != 0)
return 0; return 0;
boot_cpu_node_count++; if (IS_ENABLED(CONFIG_PPC64))
boot_cpu_node_count++;
/* Get physical cpuid */ /* Get physical cpuid */
intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len); intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment