diff options
author | Sukadev Bhattiprolu <[email protected]> | 2014-07-24 00:47:18 -0700 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2014-07-24 11:00:39 -0300 |
commit | c94b93cbca59435dfc0f2a838fea55bd632145d3 (patch) | |
tree | 1261edbb7136b53f0e9cc9eddd153a6f1ff7d336 | |
parent | 0524798cc3d74546e83ebd795e9a5ed44481eaa6 (diff) |
perf powerpc: Include util/util.h and remove stringify macros
The stringify macros are defined in tools/perf/util/util.h and don't
need to be redfined specfiically for powerpc.
Signed-off-by: Sukadev Bhattiprolu <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Michael Ellerman <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/arch/powerpc/util/header.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/perf/arch/powerpc/util/header.c b/tools/perf/arch/powerpc/util/header.c index 2f7073d107fd..6c1b8a75db09 100644 --- a/tools/perf/arch/powerpc/util/header.c +++ b/tools/perf/arch/powerpc/util/header.c @@ -5,9 +5,7 @@ #include <string.h> #include "../../util/header.h" - -#define __stringify_1(x) #x -#define __stringify(x) __stringify_1(x) +#include "../../util/util.h" #define mfspr(rn) ({unsigned long rval; \ asm volatile("mfspr %0," __stringify(rn) \ |