diff options
author | Carlos Bilbao <bilbao@vt.edu> | 2021-07-08 13:15:42 +0200 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2021-07-12 14:37:34 +0200 |
commit | e62e074814862cffd8e60a1bdf52d6b592a03675 (patch) | |
tree | bfece5a24f2d0e2cdae88de077cdef1e8a61a603 /arch/arm64/kernel | |
parent | arm64: fix strlen() with CONFIG_KASAN_HW_TAGS (diff) | |
download | linux-e62e074814862cffd8e60a1bdf52d6b592a03675.tar.xz linux-e62e074814862cffd8e60a1bdf52d6b592a03675.zip |
arm64: Add missing header <asm/smp.h> in two files
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>
Diffstat (limited to 'arch/arm64/kernel')
-rw-r--r-- | arch/arm64/kernel/cpufeature.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c index 125d5c9471ac..0ead8bfedf20 100644 --- a/arch/arm64/kernel/cpufeature.c +++ b/arch/arm64/kernel/cpufeature.c @@ -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> |