diff options
Diffstat (limited to 'tools/lib/traceevent/plugin_function.c')
-rw-r--r-- | tools/lib/traceevent/plugin_function.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lib/traceevent/plugin_function.c b/tools/lib/traceevent/plugin_function.c index a73eca34a8f9..e93f33bd705f 100644 --- a/tools/lib/traceevent/plugin_function.c +++ b/tools/lib/traceevent/plugin_function.c | |||
@@ -164,9 +164,9 @@ static int function_handler(struct trace_seq *s, struct tep_record *record, | |||
164 | return 0; | 164 | return 0; |
165 | } | 165 | } |
166 | 166 | ||
167 | int TEP_PLUGIN_LOADER(struct tep_handle *pevent) | 167 | int TEP_PLUGIN_LOADER(struct tep_handle *tep) |
168 | { | 168 | { |
169 | tep_register_event_handler(pevent, -1, "ftrace", "function", | 169 | tep_register_event_handler(tep, -1, "ftrace", "function", |
170 | function_handler, NULL); | 170 | function_handler, NULL); |
171 | 171 | ||
172 | tep_plugin_add_options("ftrace", plugin_options); | 172 | tep_plugin_add_options("ftrace", plugin_options); |
@@ -174,11 +174,11 @@ int TEP_PLUGIN_LOADER(struct tep_handle *pevent) | |||
174 | return 0; | 174 | return 0; |
175 | } | 175 | } |
176 | 176 | ||
177 | void TEP_PLUGIN_UNLOADER(struct tep_handle *pevent) | 177 | void TEP_PLUGIN_UNLOADER(struct tep_handle *tep) |
178 | { | 178 | { |
179 | int i, x; | 179 | int i, x; |
180 | 180 | ||
181 | tep_unregister_event_handler(pevent, -1, "ftrace", "function", | 181 | tep_unregister_event_handler(tep, -1, "ftrace", "function", |
182 | function_handler, NULL); | 182 | function_handler, NULL); |
183 | 183 | ||
184 | for (i = 0; i <= cpus; i++) { | 184 | for (i = 0; i <= cpus; i++) { |