diff options
Diffstat (limited to 'tools/arch')
-rw-r--r-- | tools/arch/x86/include/asm/inat.h | 2 | ||||
-rw-r--r-- | tools/arch/x86/include/asm/insn.h | 2 | ||||
-rw-r--r-- | tools/arch/x86/lib/inat.c | 2 | ||||
-rw-r--r-- | tools/arch/x86/lib/insn.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/tools/arch/x86/include/asm/inat.h b/tools/arch/x86/include/asm/inat.h index 4cf2ad521f65..877827b7c2c3 100644 --- a/tools/arch/x86/include/asm/inat.h +++ b/tools/arch/x86/include/asm/inat.h | |||
@@ -6,7 +6,7 @@ | |||
6 | * | 6 | * |
7 | * Written by Masami Hiramatsu <mhiramat@redhat.com> | 7 | * Written by Masami Hiramatsu <mhiramat@redhat.com> |
8 | */ | 8 | */ |
9 | #include <asm/inat_types.h> | 9 | #include "inat_types.h" |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * Internal bits. Don't use bitmasks directly, because these bits are | 12 | * Internal bits. Don't use bitmasks directly, because these bits are |
diff --git a/tools/arch/x86/include/asm/insn.h b/tools/arch/x86/include/asm/insn.h index 154f27be8bfc..37a4c390750b 100644 --- a/tools/arch/x86/include/asm/insn.h +++ b/tools/arch/x86/include/asm/insn.h | |||
@@ -8,7 +8,7 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | /* insn_attr_t is defined in inat.h */ | 10 | /* insn_attr_t is defined in inat.h */ |
11 | #include <asm/inat.h> | 11 | #include "inat.h" |
12 | 12 | ||
13 | struct insn_field { | 13 | struct insn_field { |
14 | union { | 14 | union { |
diff --git a/tools/arch/x86/lib/inat.c b/tools/arch/x86/lib/inat.c index 12539fca75c4..4f5ed49e1b4e 100644 --- a/tools/arch/x86/lib/inat.c +++ b/tools/arch/x86/lib/inat.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Written by Masami Hiramatsu <mhiramat@redhat.com> | 5 | * Written by Masami Hiramatsu <mhiramat@redhat.com> |
6 | */ | 6 | */ |
7 | #include <asm/insn.h> | 7 | #include "../include/asm/insn.h" |
8 | 8 | ||
9 | /* Attribute tables are generated from opcode map */ | 9 | /* Attribute tables are generated from opcode map */ |
10 | #include "inat-tables.c" | 10 | #include "inat-tables.c" |
diff --git a/tools/arch/x86/lib/insn.c b/tools/arch/x86/lib/insn.c index 0b5862ba6a75..79e048f1d902 100644 --- a/tools/arch/x86/lib/insn.c +++ b/tools/arch/x86/lib/insn.c | |||
@@ -10,8 +10,8 @@ | |||
10 | #else | 10 | #else |
11 | #include <string.h> | 11 | #include <string.h> |
12 | #endif | 12 | #endif |
13 | #include <asm/inat.h> | 13 | #include "../include/asm/inat.h" |
14 | #include <asm/insn.h> | 14 | #include "../include/asm/insn.h" |
15 | 15 | ||
16 | /* Verify next sizeof(t) bytes can be on the same instruction */ | 16 | /* Verify next sizeof(t) bytes can be on the same instruction */ |
17 | #define validate_next(t, insn, n) \ | 17 | #define validate_next(t, insn, n) \ |