[PATCH] arm64: insn:#include <linux/kprobes.h> instead of <asm/kprobes.h>

chenqingyun001@208suo.com posted 1 patch 2 years, 6 months ago
arch/arm64/lib/insn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] arm64: insn:#include <linux/kprobes.h> instead of <asm/kprobes.h>
Posted by chenqingyun001@208suo.com 2 years, 6 months ago
<linux/kprobes.h> is a generic header file, while
<asm/kprobes.h> is an x86 architecture-specific
header file.

Signed-off-by: Qingyun Chen <chenqingyun001@208suo.com>
---
  arch/arm64/lib/insn.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/lib/insn.c b/arch/arm64/lib/insn.c
index 924934cb85ee..080dd263fd6e 100644
--- a/arch/arm64/lib/insn.c
+++ b/arch/arm64/lib/insn.c
@@ -14,7 +14,7 @@
  #include <asm/debug-monitors.h>
  #include <asm/errno.h>
  #include <asm/insn.h>
-#include <asm/kprobes.h>
+#include <linux/kprobes.h>

  #define AARCH64_INSN_SF_BIT    BIT(31)
  #define AARCH64_INSN_N_BIT    BIT(22)