From: Namhyung Kim Date: Tue, 4 Jun 2013 05:20:30 +0000 (+0900) Subject: perf util: No need to call read_trace_init() in tracing_data_header() X-Git-Tag: next-20130731~38^2~11^2~13^2~44 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cfd0e8cf7fe7ad6f6c08e23ca4410bd718eeaf0b;p=karo-tx-linux.git 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 Cc: David Ahern Cc: Frederic Weisbecker Cc: Ingo Molnar Cc: Jiri Olsa Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Steven Rostedt Link: http://lkml.kernel.org/r/1370323231-14022-16-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- 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) else buf[0] = 0; - read_trace_init(buf[0], buf[0]); - if (write(output_fd, buf, 1) != 1) return -1;