tracing: fix typo and missing inline function
Impact: fix build bugs Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
e32d895691
commit
6b2539302b
|
@ -529,7 +529,11 @@ static inline int ftrace_graph_addr(unsigned long addr)
|
||||||
#else
|
#else
|
||||||
static inline int ftrace_trace_addr(unsigned long addr)
|
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 */
|
#endif /* CONFIG_DYNAMIC_FTRACE */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue