diff options
| author | Jiri Olsa <[email protected]> | 2017-10-11 15:01:24 +0000 |
|---|---|---|
| committer | Arnaldo Carvalho de Melo <[email protected]> | 2017-10-23 14:20:54 +0000 |
| commit | 696e2457e9fd285034cd30cd8c93ece5e6cfe35a (patch) | |
| tree | 5b5b512cb3ac15953d10b7ab719054f228311675 /tools/perf/arch/powerpc/annotate/instructions.c | |
| parent | perf list: Fix group description in the man page (diff) | |
| download | kernel-696e2457e9fd285034cd30cd8c93ece5e6cfe35a.tar.gz kernel-696e2457e9fd285034cd30cd8c93ece5e6cfe35a.zip | |
perf annotate: Remove arch::cpuid_parse callback
There's no need for extra cpuid_parse arch callback, it can be handled
directly in init callback.
Adding the init function to x86 to cover the cpuid initialization.
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/arch/powerpc/annotate/instructions.c')
| -rw-r--r-- | tools/perf/arch/powerpc/annotate/instructions.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/arch/powerpc/annotate/instructions.c b/tools/perf/arch/powerpc/annotate/instructions.c index 3c4004db81b9..b6b0ef5952d0 100644 --- a/tools/perf/arch/powerpc/annotate/instructions.c +++ b/tools/perf/arch/powerpc/annotate/instructions.c @@ -1,3 +1,5 @@ +#include <linux/compiler.h> + static struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, const char *name) { int i; @@ -46,7 +48,7 @@ static struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, con return ops; } -static int powerpc__annotate_init(struct arch *arch) +static int powerpc__annotate_init(struct arch *arch, char *cpuid __maybe_unused) { if (!arch->initialized) { arch->initialized = true; |
