arm64: Add missing header <asm/smp.h> in two files
authorCarlos Bilbao <bilbao@vt.edu>
Thu, 8 Jul 2021 11:15:42 +0000 (07:15 -0400)
committerWill Deacon <will@kernel.org>
Mon, 12 Jul 2021 12:37:34 +0000 (13:37 +0100)
Add missing header <asm/smp.h> on include/asm/smp_plat.h, as it calls function
cpu_logical_map(). Also include it on kernel/cpufeature.c since it has calls to
functions cpu_panic_kernel() and cpu_die_early().

Both files call functions defined on this header, make the header dependencies
less fragile.

Signed-off-by: Carlos Bilbao <bilbao@vt.edu>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/4325940.LvFx2qVVIh@iron-maiden
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/include/asm/smp_plat.h
arch/arm64/kernel/cpufeature.c

index 99ad77d..97ddc6c 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <linux/cpumask.h>
 
+#include <asm/smp.h>
 #include <asm/types.h>
 
 struct mpidr_hash {
index 125d5c9..0ead8bf 100644 (file)
@@ -81,6 +81,7 @@
 #include <asm/mmu_context.h>
 #include <asm/mte.h>
 #include <asm/processor.h>
+#include <asm/smp.h>
 #include <asm/sysreg.h>
 #include <asm/traps.h>
 #include <asm/virt.h>