Commit 78cbc651 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Steven Rostedt (Google)

ftrace: Fix some W=1 warnings in kernel doc comments

Clean up the following clang-w1 warning:

kernel/trace/ftrace.c:7827: warning: Function parameter or member 'ops'
not described in 'unregister_ftrace_function'.

kernel/trace/ftrace.c:7805: warning: Function parameter or member 'ops'
not described in 'register_ftrace_function'.

Link: https://lkml.kernel.org/r/20220307004303.26399-1-jiapeng.chong@linux.alibaba.comReported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
parent caf4c86b
...@@ -7790,7 +7790,7 @@ int ftrace_is_dead(void) ...@@ -7790,7 +7790,7 @@ int ftrace_is_dead(void)
/** /**
* register_ftrace_function - register a function for profiling * register_ftrace_function - register a function for profiling
* @ops - ops structure that holds the function for profiling. * @ops: ops structure that holds the function for profiling.
* *
* Register a function to be called by all functions in the * Register a function to be called by all functions in the
* kernel. * kernel.
...@@ -7817,7 +7817,7 @@ EXPORT_SYMBOL_GPL(register_ftrace_function); ...@@ -7817,7 +7817,7 @@ EXPORT_SYMBOL_GPL(register_ftrace_function);
/** /**
* unregister_ftrace_function - unregister a function for profiling. * unregister_ftrace_function - unregister a function for profiling.
* @ops - ops structure that holds the function to unregister * @ops: ops structure that holds the function to unregister
* *
* Unregister a function that was added to be called by ftrace profiling. * Unregister a function that was added to be called by ftrace profiling.
*/ */
......
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