From: Will Deacon Date: Thu, 2 Dec 2021 17:10:46 +0000 (+0000) Subject: arm64: Add missing include of asm/cpufeature.h to asm/mmu.h X-Git-Tag: v6.6.17~8235^2~10^2~10^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e04f05984dd03edad7daaa4fa97958b7133c62a;p=platform%2Fkernel%2Flinux-rpi.git arm64: Add missing include of asm/cpufeature.h to asm/mmu.h asm/mmu.h refers to cpus_have_const_cap() in the definition of arm64_kernel_unmapped_at_el0() so include asm/cpufeature.h directly rather than force all users of the header to do it themselves. Signed-off-by: Will Deacon Tested-by: Fuad Tabba Reviewed-by: Fuad Tabba Signed-off-by: Marc Zyngier Link: https://lore.kernel.org/r/20211202171048.26924-2-will@kernel.org --- diff --git a/arch/arm64/include/asm/mmu.h b/arch/arm64/include/asm/mmu.h index e9c3085..48f8466 100644 --- a/arch/arm64/include/asm/mmu.h +++ b/arch/arm64/include/asm/mmu.h @@ -15,6 +15,7 @@ #ifndef __ASSEMBLY__ #include +#include typedef struct { atomic64_t id;