diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-02-17 05:47:39 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-02-17 05:47:39 -0500 |
| commit | 97d0bb8dcd8c2812e1927cdb51d7b1f9c98352b5 (patch) | |
| tree | 12697bcf81303bb9bbaf9bf36652ef3d733725ca /include/linux | |
| parent | f492d3f8385a98f828e8220d14492337dc29e07b (diff) | |
ftrace: fix !CONFIG_FTRACE [un_]register_ftrace_command() prototypes
Impact: build fix
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/ftrace.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index b331e216d8a1..63281228ce3e 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
| @@ -238,9 +238,11 @@ extern void ftrace_enable_daemon(void); | |||
| 238 | static inline void ftrace_release(void *start, unsigned long size) { } | 238 | static inline void ftrace_release(void *start, unsigned long size) { } |
| 239 | static inline int register_ftrace_command(struct ftrace_func_command *cmd) | 239 | static inline int register_ftrace_command(struct ftrace_func_command *cmd) |
| 240 | { | 240 | { |
| 241 | return -EINVAL; | ||
| 241 | } | 242 | } |
| 242 | static inline int unregister_ftrace_command(char *cmd_name) | 243 | static inline int unregister_ftrace_command(char *cmd_name) |
| 243 | { | 244 | { |
| 245 | return -EINVAL; | ||
| 244 | } | 246 | } |
| 245 | #endif /* CONFIG_DYNAMIC_FTRACE */ | 247 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 246 | 248 | ||
