From c4c357a4dc463ab58117e6356fad2769f9e6e4c5 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 23 May 2011 23:50:38 -0400 Subject: [PATCH] Fix ftrace.h wrapper Signed-off-by: Mathieu Desnoyers --- wrapper/ftrace.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wrapper/ftrace.h b/wrapper/ftrace.h index da7c3947..9cf50d25 100644 --- a/wrapper/ftrace.h +++ b/wrapper/ftrace.h @@ -53,15 +53,14 @@ void wrapper_unregister_ftrace_function_probe(char *glob, static inline int wrapper_register_ftrace_function_probe(char *glob, - struct ftrace_probe_ops *ops, void *data); - + struct ftrace_probe_ops *ops, void *data) { return unregister_ftrace_function_probe(); } static inline void wrapper_unregister_ftrace_function_probe(char *glob, - struct ftrace_probe_ops *ops, void *data); + struct ftrace_probe_ops *ops, void *data) { return unregister_ftrace_function_probe(); } -- 2.34.1