diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-02-25 15:49:52 -0500 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-02-25 21:44:22 -0500 |
commit | eef62a6826b8ab530cefff5aa55c1661a209c803 (patch) | |
tree | f24c7f08b9a6ed443c09f26509cf2cf26fb8a19c /include/linux/tracepoint.h | |
parent | d7350c3f45694104e820041969c8185c5f99e57c (diff) |
tracing: rename DEFINE_TRACE_FMT to just TRACE_FORMAT
There's been a bit confusion to whether DEFINE/DECLARE_TRACE_FMT should
be a DEFINE or a DECLARE. Ingo Molnar suggested simply calling it
TRACE_FORMAT.
Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include/linux/tracepoint.h')
-rw-r--r-- | include/linux/tracepoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 34ae464effff..3de09fa8e01d 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h @@ -153,7 +153,7 @@ static inline void tracepoint_synchronize_unregister(void) synchronize_sched(); } -#define DEFINE_TRACE_FMT(name, proto, args, fmt) \ +#define TRACE_FORMAT(name, proto, args, fmt) \ DECLARE_TRACE(name, TPPROTO(proto), TPARGS(args)) #endif |