From 11303ebb329035c7dd004caa6fbe06df86094b0a Mon Sep 17 00:00:00 2001 From: Catalin Marinas Date: Mon, 12 Oct 2015 12:10:53 +0100 Subject: [PATCH] arm64: Fix missing #include in hw_breakpoint.c A prior commit used to detect the hw breakpoint ABI behaviour based on the target state missed the asm/compat.h include and the build fails with !CONFIG_COMPAT. Fixes: 70f1760d1ba3 ("arm64: hw_breakpoint: use target state to determine ABI behaviour") Signed-off-by: Catalin Marinas --- arch/arm64/kernel/hw_breakpoint.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/kernel/hw_breakpoint.c b/arch/arm64/kernel/hw_breakpoint.c index 46465d9fbc4d9..b45c95d34b832 100644 --- a/arch/arm64/kernel/hw_breakpoint.c +++ b/arch/arm64/kernel/hw_breakpoint.c @@ -28,6 +28,7 @@ #include #include +#include #include #include #include -- 2.39.5