diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-10-02 11:45:47 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-14 04:39:13 -0400 |
commit | 3e1932ad59726d794a865cc159c0593d54bf0cb6 (patch) | |
tree | 2352a3fe4af33bb7f15ae2c809b8f40d865530ab /include | |
parent | 5601020feb0c3010e9e3e0131e9697ac6a06777b (diff) |
tracing/fastboot: build fix
fix:
In file included from kernel/sysctl.c:52:
include/linux/ftrace.h:217: error: 'KSYM_NAME_LEN' undeclared here (not in a function)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ftrace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index e672e51c40a9..deded114dffd 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -1,14 +1,14 @@ | |||
1 | #ifndef _LINUX_FTRACE_H | 1 | #ifndef _LINUX_FTRACE_H |
2 | #define _LINUX_FTRACE_H | 2 | #define _LINUX_FTRACE_H |
3 | 3 | ||
4 | #ifdef CONFIG_FTRACE | ||
5 | |||
6 | #include <linux/linkage.h> | 4 | #include <linux/linkage.h> |
7 | #include <linux/fs.h> | 5 | #include <linux/fs.h> |
8 | #include <linux/init.h> | 6 | #include <linux/init.h> |
9 | #include <linux/types.h> | 7 | #include <linux/types.h> |
10 | #include <linux/kallsyms.h> | 8 | #include <linux/kallsyms.h> |
11 | 9 | ||
10 | #ifdef CONFIG_FTRACE | ||
11 | |||
12 | extern int ftrace_enabled; | 12 | extern int ftrace_enabled; |
13 | extern int | 13 | extern int |
14 | ftrace_enable_sysctl(struct ctl_table *table, int write, | 14 | ftrace_enable_sysctl(struct ctl_table *table, int write, |