diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2013-06-04 01:20:30 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-07-12 12:52:31 -0400 |
commit | cfd0e8cf7fe7ad6f6c08e23ca4410bd718eeaf0b (patch) | |
tree | 260ca351c9b33c2537fc96d4143e659b96e16028 /tools/perf/util/trace-event-info.c | |
parent | 077f159d0402ac90a3ea9975f4089a042e0be065 (diff) |
perf util: No need to call read_trace_init() in tracing_data_header()
It's useless to call the read_trace_init() function at this time as we
don't need a returned pevent and it makes me confusing. :)
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1370323231-14022-16-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/trace-event-info.c')
-rw-r--r-- | tools/perf/util/trace-event-info.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/perf/util/trace-event-info.c b/tools/perf/util/trace-event-info.c index a800f2b8ccfc..f3c9e551bd35 100644 --- a/tools/perf/util/trace-event-info.c +++ b/tools/perf/util/trace-event-info.c | |||
@@ -476,8 +476,6 @@ static int tracing_data_header(void) | |||
476 | else | 476 | else |
477 | buf[0] = 0; | 477 | buf[0] = 0; |
478 | 478 | ||
479 | read_trace_init(buf[0], buf[0]); | ||
480 | |||
481 | if (write(output_fd, buf, 1) != 1) | 479 | if (write(output_fd, buf, 1) != 1) |
482 | return -1; | 480 | return -1; |
483 | 481 | ||