diff options
author | Jeremy Linton <jeremy.linton@arm.com> | 2017-05-31 16:56:44 -0500 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2017-06-13 17:09:31 -0400 |
commit | 99be647c5841d570a23b5dfa65bfecada8b6e6b5 (patch) | |
tree | 85e1bf226ec67b4600656ff3dc98ab0f1772e8c9 /include/linux/module.h | |
parent | 00f4b652b6f1dbfd4e1d5419d7f1cc23b1374da8 (diff) | |
download | lwn-99be647c5841d570a23b5dfa65bfecada8b6e6b5.tar.gz lwn-99be647c5841d570a23b5dfa65bfecada8b6e6b5.zip |
trace: rename struct module entry for trace enums
Each module has a list of enum's its contributing to the
enum map, rename that entry to reflect its use by more than
enums.
Link: http://lkml.kernel.org/r/20170531215653.3240-4-jeremy.linton@arm.com
Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 46b48043d741..8eb9a1e693e5 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -442,8 +442,8 @@ struct module { #ifdef CONFIG_EVENT_TRACING struct trace_event_call **trace_events; unsigned int num_trace_events; - struct trace_eval_map **trace_enums; - unsigned int num_trace_enums; + struct trace_eval_map **trace_evals; + unsigned int num_trace_evals; #endif #ifdef CONFIG_FTRACE_MCOUNT_RECORD unsigned int num_ftrace_callsites; |