Commit 97d0bb8d authored by Ingo Molnar's avatar Ingo Molnar

ftrace: fix !CONFIG_FTRACE [un_]register_ftrace_command() prototypes

Impact: build fix
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent f492d3f8
...@@ -238,9 +238,11 @@ extern void ftrace_enable_daemon(void); ...@@ -238,9 +238,11 @@ extern void ftrace_enable_daemon(void);
static inline void ftrace_release(void *start, unsigned long size) { } static inline void ftrace_release(void *start, unsigned long size) { }
static inline int register_ftrace_command(struct ftrace_func_command *cmd) static inline int register_ftrace_command(struct ftrace_func_command *cmd)
{ {
return -EINVAL;
} }
static inline int unregister_ftrace_command(char *cmd_name) static inline int unregister_ftrace_command(char *cmd_name)
{ {
return -EINVAL;
} }
#endif /* CONFIG_DYNAMIC_FTRACE */ #endif /* CONFIG_DYNAMIC_FTRACE */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment