diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2013-10-24 09:34:18 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2013-11-05 17:43:40 -0500 |
commit | 38de93abec8d8acd8d6dbbe9b0d92d6d5cdb3090 (patch) | |
tree | 4b7ea21748121502c7d4d8625512134651d1eb9d /include | |
parent | f306cc82a93d6b19f01634b80c580b9755c8b7cc (diff) |
tracing: Make register/unregister_ftrace_command __init
register/unregister_ftrace_command() are only ever called from __init
functions, so can themselves be made __init.
Also make register_snapshot_cmd() __init for the same reason.
Link: http://lkml.kernel.org/r/d4042c8cadb7ae6f843ac9a89a24e1c6a3099727.1382620672.git.tom.zanussi@linux.intel.com
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ftrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index ec85d48619e1..31ea4b428360 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -533,11 +533,11 @@ static inline int ftrace_force_update(void) { return 0; } | |||
533 | static inline void ftrace_disable_daemon(void) { } | 533 | static inline void ftrace_disable_daemon(void) { } |
534 | static inline void ftrace_enable_daemon(void) { } | 534 | static inline void ftrace_enable_daemon(void) { } |
535 | static inline void ftrace_release_mod(struct module *mod) {} | 535 | static inline void ftrace_release_mod(struct module *mod) {} |
536 | static inline int register_ftrace_command(struct ftrace_func_command *cmd) | 536 | static inline __init int register_ftrace_command(struct ftrace_func_command *cmd) |
537 | { | 537 | { |
538 | return -EINVAL; | 538 | return -EINVAL; |
539 | } | 539 | } |
540 | static inline int unregister_ftrace_command(char *cmd_name) | 540 | static inline __init int unregister_ftrace_command(char *cmd_name) |
541 | { | 541 | { |
542 | return -EINVAL; | 542 | return -EINVAL; |
543 | } | 543 | } |