Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28d20e2d authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt
Browse files

tracing/events: call the correct event trace selftest init function



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: default avatarSteven Rostedt <rostedt@goodmis.org>
parent a7abe97f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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