diff options
author | Arnaldo Carvalho de Melo <[email protected]> | 2013-11-27 16:32:56 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2013-11-27 16:32:56 -0300 |
commit | 972ec653c489fd08ac2904caa98a6fa3f44dc303 (patch) | |
tree | 99ae9c56f2ab59ad3c08bdefe35e694136844a65 | |
parent | 6e53ad9ff65226f79d5888452992222284c7e4d4 (diff) |
perf timechart: Remove misplaced __maybe_unused
The 'event' parameter _is_ used.
Cc: Adrian Hunter <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stanislav Fomichev <[email protected]>
Cc: Stephane Eranian <[email protected]>
echo Link: http://lkml.kernel.org/n/tip-`ranpwd -l 24`@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/builtin-timechart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c index c246f0290623..680632d7e26a 100644 --- a/tools/perf/builtin-timechart.c +++ b/tools/perf/builtin-timechart.c @@ -511,7 +511,7 @@ typedef int (*tracepoint_handler)(struct perf_evsel *evsel, const char *backtrace); static int process_sample_event(struct perf_tool *tool __maybe_unused, - union perf_event *event __maybe_unused, + union perf_event *event, struct perf_sample *sample, struct perf_evsel *evsel, struct machine *machine __maybe_unused) |