diff options
| author | Steven Rostedt <srostedt@redhat.com> | 2009-03-10 21:10:56 +0300 | 
|---|---|---|
| committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-10 21:13:14 +0300 | 
| commit | ef18012b248b47ec9a12c3a83ca5e99782d39c5d (patch) | |
| tree | 8103b4d14c6b81a6a5ec39cd43e4ca7ffb51625d /kernel/trace/trace_functions_graph.c | |
| parent | 0e3d0f0566f3fcf664782f597070bbc669d78454 (diff) | |
| download | linux-ef18012b248b47ec9a12c3a83ca5e99782d39c5d.tar.xz | |
tracing: remove funky whitespace in the trace code
Impact: clean up
There existed a lot of <space><tab>'s in the tracing code. This
patch removes them.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'kernel/trace/trace_functions_graph.c')
| -rw-r--r-- | kernel/trace/trace_functions_graph.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c index 453ebd3b636e..d1493b853e41 100644 --- a/kernel/trace/trace_functions_graph.c +++ b/kernel/trace/trace_functions_graph.c @@ -841,12 +841,12 @@ static void graph_trace_close(struct trace_iterator *iter)  }  static struct tracer graph_trace __read_mostly = { -	.name	     	= "function_graph", +	.name		= "function_graph",  	.open		= graph_trace_open,  	.close		= graph_trace_close,  	.wait_pipe	= poll_wait_pipe, -	.init	     	= graph_trace_init, -	.reset	     	= graph_trace_reset, +	.init		= graph_trace_init, +	.reset		= graph_trace_reset,  	.print_line	= print_graph_function,  	.print_header	= print_graph_headers,  	.flags		= &tracer_flags,  | 
