diff options
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r-- | include/linux/ftrace.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 20e14d0093c7..366098d591de 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -31,7 +31,6 @@ int unregister_ftrace_function(struct ftrace_ops *ops); | |||
31 | void clear_ftrace_function(void); | 31 | void clear_ftrace_function(void); |
32 | 32 | ||
33 | extern void ftrace_stub(unsigned long a0, unsigned long a1); | 33 | extern void ftrace_stub(unsigned long a0, unsigned long a1); |
34 | extern void mcount(void); | ||
35 | 34 | ||
36 | #else /* !CONFIG_FTRACE */ | 35 | #else /* !CONFIG_FTRACE */ |
37 | # define register_ftrace_function(ops) do { } while (0) | 36 | # define register_ftrace_function(ops) do { } while (0) |
@@ -54,7 +53,7 @@ enum { | |||
54 | 53 | ||
55 | struct dyn_ftrace { | 54 | struct dyn_ftrace { |
56 | struct hlist_node node; | 55 | struct hlist_node node; |
57 | unsigned long ip; | 56 | unsigned long ip; /* address of mcount call-site */ |
58 | unsigned long flags; | 57 | unsigned long flags; |
59 | }; | 58 | }; |
60 | 59 | ||