diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-03-19 14:03:53 -0400 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-19 15:58:47 -0400 |
commit | 40ce74f19c28077550646c76d96a075bf312e461 (patch) | |
tree | bd58d38b6ac806be6f59276f16d1e0758376fa1d /kernel/trace/trace_mmiotrace.c | |
parent | 2fbcdb35aca614f9529a0e7d340146cf0b71684f (diff) | |
download | linux-stable-40ce74f19c28077550646c76d96a075bf312e461.tar.gz linux-stable-40ce74f19c28077550646c76d96a075bf312e461.tar.bz2 linux-stable-40ce74f19c28077550646c76d96a075bf312e461.zip |
tracing: remove recording function depth from trace_printk
The function depth in trace_printk was to facilitate the function
graph output. Now that the function graph calculates the depth within
the trace output, we no longer need to record the depth when the
trace_printk is called.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'kernel/trace/trace_mmiotrace.c')
-rw-r--r-- | kernel/trace/trace_mmiotrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_mmiotrace.c b/kernel/trace/trace_mmiotrace.c index f095916e477f..8e37fcddd8b4 100644 --- a/kernel/trace/trace_mmiotrace.c +++ b/kernel/trace/trace_mmiotrace.c @@ -359,5 +359,5 @@ void mmio_trace_mapping(struct mmiotrace_map *map) int mmio_trace_printk(const char *fmt, va_list args) { - return trace_vprintk(0, -1, fmt, args); + return trace_vprintk(0, fmt, args); } |