diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-10-02 17:45:47 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-14 10:39:13 +0200 |
commit | 3e1932ad59726d794a865cc159c0593d54bf0cb6 (patch) | |
tree | 2352a3fe4af33bb7f15ae2c809b8f40d865530ab | |
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>
-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 e672e51c40a..deded114dff 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h @@ -1,14 +1,14 @@ #ifndef _LINUX_FTRACE_H #define _LINUX_FTRACE_H -#ifdef CONFIG_FTRACE - #include <linux/linkage.h> #include <linux/fs.h> #include <linux/init.h> #include <linux/types.h> #include <linux/kallsyms.h> +#ifdef CONFIG_FTRACE + extern int ftrace_enabled; extern int ftrace_enable_sysctl(struct ctl_table *table, int write, |