diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/litmus/debug_trace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/litmus/debug_trace.h b/include/litmus/debug_trace.h index bcf5a47f47cc..570460f35514 100644 --- a/include/litmus/debug_trace.h +++ b/include/litmus/debug_trace.h | |||
@@ -2,11 +2,11 @@ | |||
2 | #define LITMUS_DEBUG_TRACE_H | 2 | #define LITMUS_DEBUG_TRACE_H |
3 | 3 | ||
4 | #ifdef CONFIG_LITMUS_DEBUG_TRACE | 4 | #ifdef CONFIG_LITMUS_DEBUG_TRACE |
5 | void sched_trace_log_message(const char* fmt, ...); | 5 | void debug_trace_log_message(const char* fmt, ...); |
6 | void dump_trace_buffer(int max); | 6 | void dump_trace_buffer(int max); |
7 | #else | 7 | #else |
8 | 8 | ||
9 | #define sched_trace_log_message(fmt, ...) | 9 | #define debug_trace_log_message(fmt, ...) |
10 | 10 | ||
11 | #endif | 11 | #endif |
12 | 12 | ||
@@ -24,7 +24,7 @@ extern atomic_t __log_seq_no; | |||
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | #define TRACE(fmt, args...) \ | 26 | #define TRACE(fmt, args...) \ |
27 | sched_trace_log_message(TRACE_PREFIX fmt, \ | 27 | debug_trace_log_message(TRACE_PREFIX fmt, \ |
28 | TRACE_ARGS, ## args) | 28 | TRACE_ARGS, ## args) |
29 | 29 | ||
30 | #define TRACE_TASK(t, fmt, args...) \ | 30 | #define TRACE_TASK(t, fmt, args...) \ |