diff options
author | Jean Pihet <jean.pihet@linaro.org> | 2014-05-16 10:41:09 +0200 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-16 11:38:57 +0200 |
commit | 21a8b756b84ecaa0b7f29199669c151e2ce5e723 (patch) | |
tree | 22ba22136aa59359d4d58619763de384f7d55572 /tools/perf | |
parent | c5765ece8a050836c6255e1276fc8e0e867078da (diff) | |
download | linux-21a8b756b84ecaa0b7f29199669c151e2ce5e723.tar.gz linux-21a8b756b84ecaa0b7f29199669c151e2ce5e723.tar.bz2 linux-21a8b756b84ecaa0b7f29199669c151e2ce5e723.zip |
perf tools: Consolidate types.h for ARM and ARM64
Prevents a build breakage since commit d944c4eebcf4c0d5e5d9728fec110cbf0047ad7f
'tools: Consolidate types.h'
Signed-off-by: Jean Pihet <jean.pihet@linaro.org>
Link: http://lkml.kernel.org/r/1400229672-16104-1-git-send-email-jean.pihet@linaro.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/arch/arm/include/perf_regs.h | 2 | ||||
-rw-r--r-- | tools/perf/arch/arm64/include/perf_regs.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/arch/arm/include/perf_regs.h b/tools/perf/arch/arm/include/perf_regs.h index 2a1cfde66b69..bcca511f5884 100644 --- a/tools/perf/arch/arm/include/perf_regs.h +++ b/tools/perf/arch/arm/include/perf_regs.h @@ -2,7 +2,7 @@ #define ARCH_PERF_REGS_H #include <stdlib.h> -#include "../../util/types.h" +#include <linux/types.h> #include <asm/perf_regs.h> #define PERF_REGS_MASK ((1ULL << PERF_REG_ARM_MAX) - 1) diff --git a/tools/perf/arch/arm64/include/perf_regs.h b/tools/perf/arch/arm64/include/perf_regs.h index 23595467402d..e9441b9e2a30 100644 --- a/tools/perf/arch/arm64/include/perf_regs.h +++ b/tools/perf/arch/arm64/include/perf_regs.h @@ -2,7 +2,7 @@ #define ARCH_PERF_REGS_H #include <stdlib.h> -#include "../../util/types.h" +#include <linux/types.h> #include <asm/perf_regs.h> #define PERF_REGS_MASK ((1ULL << PERF_REG_ARM64_MAX) - 1) |