diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-03-10 00:15:34 -0400 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-10 00:35:12 -0400 |
commit | 157587d7ac555458da9f682e3250135e468470a6 (patch) | |
tree | 81033336672eb821f3833a1667bedfc646a3a6f5 /include | |
parent | d6e2ca4c05be6a5ab16030a9f227301bd6acc9f0 (diff) |
tracing: remove obsolete TRACE_EVENT_FORMAT macro
Impact: clean up
The TRACE_EVENT_FORMAT macro is no longer used by trace points
and only the DECLARE_TRACE, TRACE_FORMAT or TRACE_EVENT macros should
be used by them. Although the TRACE_EVENT_FORMAT macro is still used
by the internal tracing utility, it should not be used in core
kernel code.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/tracepoint.h | 3 | ||||
-rw-r--r-- | include/trace/lockdep_event_types.h | 2 | ||||
-rw-r--r-- | include/trace/sched_event_types.h | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h index 6b4f1bb3701e..69b56988813d 100644 --- a/include/linux/tracepoint.h +++ b/include/linux/tracepoint.h | |||
@@ -157,9 +157,6 @@ static inline void tracepoint_synchronize_unregister(void) | |||
157 | #define TRACE_FORMAT(name, proto, args, fmt) \ | 157 | #define TRACE_FORMAT(name, proto, args, fmt) \ |
158 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) | 158 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) |
159 | 159 | ||
160 | #define TRACE_EVENT_FORMAT(name, proto, args, fmt, struct, tpfmt) \ | ||
161 | TRACE_FORMAT(name, PARAMS(proto), PARAMS(args), PARAMS(fmt)) | ||
162 | |||
163 | #define TRACE_EVENT(name, proto, args, struct, print, assign) \ | 160 | #define TRACE_EVENT(name, proto, args, struct, print, assign) \ |
164 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) | 161 | DECLARE_TRACE(name, PARAMS(proto), PARAMS(args)) |
165 | 162 | ||
diff --git a/include/trace/lockdep_event_types.h b/include/trace/lockdep_event_types.h index 1f00e8b3543e..adccfcd2ec8f 100644 --- a/include/trace/lockdep_event_types.h +++ b/include/trace/lockdep_event_types.h | |||
@@ -1,5 +1,5 @@ | |||
1 | 1 | ||
2 | #ifndef TRACE_EVENT_FORMAT | 2 | #ifndef TRACE_FORMAT |
3 | # error Do not include this file directly. | 3 | # error Do not include this file directly. |
4 | # error Unless you know what you are doing. | 4 | # error Unless you know what you are doing. |
5 | #endif | 5 | #endif |
diff --git a/include/trace/sched_event_types.h b/include/trace/sched_event_types.h index 0bbbf410e01f..fb37af672c88 100644 --- a/include/trace/sched_event_types.h +++ b/include/trace/sched_event_types.h | |||
@@ -1,6 +1,6 @@ | |||
1 | 1 | ||
2 | /* use <trace/sched.h> instead */ | 2 | /* use <trace/sched.h> instead */ |
3 | #ifndef TRACE_EVENT_FORMAT | 3 | #ifndef TRACE_EVENT |
4 | # error Do not include this file directly. | 4 | # error Do not include this file directly. |
5 | # error Unless you know what you are doing. | 5 | # error Unless you know what you are doing. |
6 | #endif | 6 | #endif |