diff options
author | Abhishek Sagar <sagar.abhishek@gmail.com> | 2008-06-01 12:17:42 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-10 05:57:49 -0400 |
commit | 1d74f2a0f64b4091e5e91b55ac1b17dff93f4b59 (patch) | |
tree | 8777ee5d38cf27939687adf2dc3d2a9a5f60b33d /arch/x86/kernel | |
parent | 0eb967012ea15e6e8cfab483d9fa37bc602d400c (diff) |
ftrace: remove ftrace_ip_converted()
Remove the unneeded function ftrace_ip_converted().
Signed-off-by: Abhishek Sagar <sagar.abhishek@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/ftrace.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c index 498608c015fb..bc5cf8d46742 100644 --- a/arch/x86/kernel/ftrace.c +++ b/arch/x86/kernel/ftrace.c | |||
@@ -31,16 +31,6 @@ union ftrace_code_union { | |||
31 | } __attribute__((packed)); | 31 | } __attribute__((packed)); |
32 | }; | 32 | }; |
33 | 33 | ||
34 | notrace int ftrace_ip_converted(unsigned long ip) | ||
35 | { | ||
36 | unsigned long save; | ||
37 | |||
38 | ip -= CALL_BACK; | ||
39 | save = *(long *)ip; | ||
40 | |||
41 | return save == *ftrace_nop; | ||
42 | } | ||
43 | |||
44 | static int notrace ftrace_calc_offset(long ip, long addr) | 34 | static int notrace ftrace_calc_offset(long ip, long addr) |
45 | { | 35 | { |
46 | return (int)(addr - ip); | 36 | return (int)(addr - ip); |