summaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_events_trigger.c
diff options
context:
space:
mode:
authorsunliming <sunliming@kylinos.cn>2022-05-26 15:29:57 +0800
committerSteven Rostedt (Google) <rostedt@goodmis.org>2022-05-26 22:03:52 -0400
commit8d4a21b5ac9dad5d5221c60060b3ac28d22f57ca (patch)
tree36f60b6d1586c6084e36b8e989e8963c65da2720 /kernel/trace/trace_events_trigger.c
parentaef54851bf1d3e31f9c15e8134e859c2f343ceab (diff)
downloadlinux-8d4a21b5ac9dad5d5221c60060b3ac28d22f57ca.tar.gz
linux-8d4a21b5ac9dad5d5221c60060b3ac28d22f57ca.tar.bz2
linux-8d4a21b5ac9dad5d5221c60060b3ac28d22f57ca.zip
tracing: Fix comments for event_trigger_separate_filter()
The parameter name in comments of event_trigger_separate_filter() is inconsistent with actual parameter name, fix it. Link: https://lkml.kernel.org/r/20220526072957.165655-1-sunliming@kylinos.cn Signed-off-by: sunliming <sunliming@kylinos.cn> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/trace_events_trigger.c')
-rw-r--r--kernel/trace/trace_events_trigger.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/trace/trace_events_trigger.c b/kernel/trace/trace_events_trigger.c
index 21592bed2e89..cb866c3141af 100644
--- a/kernel/trace/trace_events_trigger.c
+++ b/kernel/trace/trace_events_trigger.c
@@ -738,15 +738,15 @@ bool event_trigger_empty_param(const char *param)
/**
* event_trigger_separate_filter - separate an event trigger from a filter
- * @param: The param string containing trigger and possibly filter
- * @trigger: outparam, will be filled with a pointer to the trigger
+ * @param_and_filter: String containing trigger and possibly filter
+ * @param: outparam, will be filled with a pointer to the trigger
* @filter: outparam, will be filled with a pointer to the filter
* @param_required: Specifies whether or not the param string is required
*
* Given a param string of the form '[trigger] [if filter]', this
* function separates the filter from the trigger and returns the
- * trigger in *trigger and the filter in *filter. Either the *trigger
- * or the *filter may be set to NULL by this function - if not set to
+ * trigger in @param and the filter in @filter. Either the @param
+ * or the @filter may be set to NULL by this function - if not set to
* NULL, they will contain strings corresponding to the trigger and
* filter.
*