dect
/
linux-2.6
Archived
13
0
Fork 0

tracing/events: enable code with EVENT_TRACING not EVENT_TRACER

The CONFIG_EVENT_TRACER is the way to turn on event tracing when no
other tracing has been configured. All code to get enabled should
depend on CONFIG_EVENT_TRACING. That is what is enabled when TRACING
(or CONFIG_EVENT_TRACER) is selected.

This patch enables the include/trace/ftrace.h file when
CONFIG_EVENT_TRACING is enabled.

[ Impact: fix warning in event tracer selftest ]

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
Steven Rostedt 2009-04-17 13:02:22 -04:00 committed by Steven Rostedt
parent ac1adc55fc
commit b0afdc126d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@
#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
#ifdef CONFIG_EVENT_TRACER
#ifdef CONFIG_EVENT_TRACING
#include <trace/ftrace.h>
#endif