diff options
author | Nicolas Iooss <nicolas.iooss_linux@m4x.org> | 2015-05-03 13:18:02 +0300 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2015-05-12 22:56:54 +0300 |
commit | 755a27e7e4c817dd51ade41668b380f26026899c (patch) | |
tree | 0839d1300cccfa00704e4f8f5f561f28a7a88087 | |
parent | 030bbdbf4c833bc69f502eae58498bc5572db736 (diff) | |
download | linux-755a27e7e4c817dd51ade41668b380f26026899c.tar.xz |
tracing: remove unused ftrace_output_event() prototype
The prototype of ftrace_output_event was added by commit 1d6bae966e90
("tracing: Move raw output code from macro to standalone function")
but this function was not defined anywhere, and is still nowhere to be
found.
Link: http://lkml.kernel.org/r/1430648282-25792-1-git-send-email-nicolas.iooss_linux@m4x.org
Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | include/linux/ftrace_event.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index f9ecf63d47f1..65ce6de91307 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h @@ -219,9 +219,6 @@ struct ftrace_event_class { extern int ftrace_event_reg(struct ftrace_event_call *event, enum trace_reg type, void *data); -int ftrace_output_event(struct trace_iterator *iter, struct ftrace_event_call *event, - char *fmt, ...); - int ftrace_event_define_field(struct ftrace_event_call *call, char *type, int len, char *item, int offset, int field_size, int sign, int filter); |