From mboxrd@z Thu Jan 1 00:00:00 1970 From: paul@pwsan.com (Paul Walmsley) Date: Mon, 05 Jan 2015 18:52:10 -0700 Subject: [PATCH 1/4] arm64: fix missing asm/pgtable-hwdef.h include in asm/processor.h In-Reply-To: <20150106014554.27249.89116.stgit@dusk.lan> References: <20150106014554.27249.89116.stgit@dusk.lan> Message-ID: <20150106015156.27249.32173.stgit@dusk.lan> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On next-20150105, defconfig compilation breaks with: ./arch/arm64/include/asm/processor.h:47:32: error: ?PHYS_MASK? undeclared (first use in this function) Fix by including asm/pgtable-hwdef.h, where PHYS_MASK is defined. Signed-off-by: Paul Walmsley Cc: Paul Walmsley Cc: Catalin Marinas Cc: Will Deacon --- arch/arm64/include/asm/processor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/include/asm/processor.h b/arch/arm64/include/asm/processor.h index 286b1bec547c..e271690753ff 100644 --- a/arch/arm64/include/asm/processor.h +++ b/arch/arm64/include/asm/processor.h @@ -33,6 +33,7 @@ #include #include #include +#include #ifdef __KERNEL__ #define STACK_TOP_MAX TASK_SIZE_64