Commit-ID: 6e53ad9ff65226f79d5888452992222284c7e4d4 Gitweb: http://git.kernel.org/tip/6e53ad9ff65226f79d5888452992222284c7e4d4 Author: Arnaldo Carvalho de Melo <[email protected]> AuthorDate: Wed, 27 Nov 2013 16:29:50 -0300 Committer: Arnaldo Carvalho de Melo <[email protected]> CommitDate: Wed, 27 Nov 2013 16:29:50 -0300
perf timechart: Remove some needless struct forward declarations 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]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]> --- tools/perf/builtin-timechart.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/perf/builtin-timechart.c b/tools/perf/builtin-timechart.c index 436cb5f..c246f02 100644 --- a/tools/perf/builtin-timechart.c +++ b/tools/perf/builtin-timechart.c @@ -55,14 +55,8 @@ static bool tasks_only; static bool with_backtrace; -struct per_pid; struct per_pidcomm; - struct cpu_sample; -struct power_event; -struct wake_event; - -struct sample_wrapper; /* * Datastructure layout: @@ -155,7 +149,6 @@ struct wake_event { static struct power_event *power_events; static struct wake_event *wake_events; -struct process_filter; struct process_filter { char *name; int pid; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

