Skip to content

Commit

Permalink
tracing: fix typo and missing inline function
Browse files Browse the repository at this point in the history
Impact: fix build bugs

Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Dec 4, 2008
1 parent e32d895 commit 6b25393
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kernel/trace/trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,11 @@ static inline int ftrace_graph_addr(unsigned long addr)
#else
static inline int ftrace_trace_addr(unsigned long addr)
{
return 1
return 1;
}
static inline int ftrace_graph_addr(unsigned long addr)
{
return 1;
}
#endif /* CONFIG_DYNAMIC_FTRACE */

Expand Down

0 comments on commit 6b25393

Please sign in to comment.