Skip to content

Commit

Permalink
tracing/events: call the correct event trace selftest init function
Browse files Browse the repository at this point in the history
The late_initcall calls a helper function instead of the proper
init event selftest function.

This update may have been lost due to conflicting merges.

[ Impact: fix compiler warning and call extended event trace self tests ]

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed Apr 20, 2009
1 parent a7abe97 commit 28d20e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/trace/trace_events.c
Original file line number Diff line number Diff line change
Expand Up @@ -1199,6 +1199,6 @@ static __init int event_trace_self_tests_init(void)
return 0;
}

late_initcall(event_trace_self_tests);
late_initcall(event_trace_self_tests_init);

#endif

0 comments on commit 28d20e2

Please sign in to comment.