Skip to content

Commit

Permalink
perf tools: Consolidate types.h for ARM and ARM64
Browse files Browse the repository at this point in the history
Prevents a build breakage since commit d944c4e
'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>
  • Loading branch information
Jean Pihet authored and Jiri Olsa committed May 16, 2014
1 parent c5765ec commit 21a8b75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/perf/arch/arm/include/perf_regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/perf/arch/arm64/include/perf_regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 21a8b75

Please sign in to comment.