Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb50ce32 authored by Catalin Marinas's avatar Catalin Marinas
Browse files

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: 8f48c062 ("arm64: hw_breakpoint: use target state to determine ABI behaviour")
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent 217d453d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
#include <linux/ptrace.h>
#include <linux/smp.h>

#include <asm/compat.h>
#include <asm/current.h>
#include <asm/debug-monitors.h>
#include <asm/hw_breakpoint.h>