aboutsummaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-12-12 13:06:13 -0800
committerIngo Molnar <mingo@elte.hu>2009-12-13 08:14:45 +0100
commit4819568f23a8bef0ca99b740ca60fe2450ab0aac (patch)
tree18fa04e59e34dd96fd33c7edbeb49b8336ec688b /include/trace
parentdd7f59435782a02ceb6d16b9ce823dd3345d75ec (diff)
ftrace.h: Use common pr_info fmt string
Reduces fmt string space a bit. Signed-off-by: Joe Perches <joe@perches.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <1260651974.2637.4.camel@Joe-Laptop.home> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/ftrace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
index d1b3de9c1a7..c4eca380204 100644
--- a/include/trace/ftrace.h
+++ b/include/trace/ftrace.h
@@ -733,7 +733,7 @@ static int ftrace_raw_reg_event_##call(struct ftrace_event_call *unused)\
ret = register_trace_##call(ftrace_raw_event_##call); \
if (ret) \
pr_info("event trace: Could not activate trace point " \
- "probe to " #call "\n"); \
+ "probe to %s\n", #call); \
return ret; \
} \
\