diff options
Diffstat (limited to 'arch/powerpc/kernel/ppc_ksyms.c')
-rw-r--r-- | arch/powerpc/kernel/ppc_ksyms.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/ppc_ksyms.c b/arch/powerpc/kernel/ppc_ksyms.c index cf6b5a7d8b3f..e1ea4fe5cfbd 100644 --- a/arch/powerpc/kernel/ppc_ksyms.c +++ b/arch/powerpc/kernel/ppc_ksyms.c | |||
@@ -8,7 +8,6 @@ | |||
8 | #include <linux/screen_info.h> | 8 | #include <linux/screen_info.h> |
9 | #include <linux/vt_kern.h> | 9 | #include <linux/vt_kern.h> |
10 | #include <linux/nvram.h> | 10 | #include <linux/nvram.h> |
11 | #include <linux/console.h> | ||
12 | #include <linux/irq.h> | 11 | #include <linux/irq.h> |
13 | #include <linux/pci.h> | 12 | #include <linux/pci.h> |
14 | #include <linux/delay.h> | 13 | #include <linux/delay.h> |
@@ -43,6 +42,7 @@ | |||
43 | #include <asm/div64.h> | 42 | #include <asm/div64.h> |
44 | #include <asm/signal.h> | 43 | #include <asm/signal.h> |
45 | #include <asm/dcr.h> | 44 | #include <asm/dcr.h> |
45 | #include <asm/ftrace.h> | ||
46 | 46 | ||
47 | #ifdef CONFIG_PPC32 | 47 | #ifdef CONFIG_PPC32 |
48 | extern void transfer_to_handler(void); | 48 | extern void transfer_to_handler(void); |
@@ -68,6 +68,10 @@ EXPORT_SYMBOL(single_step_exception); | |||
68 | EXPORT_SYMBOL(sys_sigreturn); | 68 | EXPORT_SYMBOL(sys_sigreturn); |
69 | #endif | 69 | #endif |
70 | 70 | ||
71 | #ifdef CONFIG_FTRACE | ||
72 | EXPORT_SYMBOL(_mcount); | ||
73 | #endif | ||
74 | |||
71 | EXPORT_SYMBOL(strcpy); | 75 | EXPORT_SYMBOL(strcpy); |
72 | EXPORT_SYMBOL(strncpy); | 76 | EXPORT_SYMBOL(strncpy); |
73 | EXPORT_SYMBOL(strcat); | 77 | EXPORT_SYMBOL(strcat); |
@@ -103,6 +107,9 @@ EXPORT_SYMBOL(giveup_fpu); | |||
103 | #ifdef CONFIG_ALTIVEC | 107 | #ifdef CONFIG_ALTIVEC |
104 | EXPORT_SYMBOL(giveup_altivec); | 108 | EXPORT_SYMBOL(giveup_altivec); |
105 | #endif /* CONFIG_ALTIVEC */ | 109 | #endif /* CONFIG_ALTIVEC */ |
110 | #ifdef CONFIG_VSX | ||
111 | EXPORT_SYMBOL(giveup_vsx); | ||
112 | #endif /* CONFIG_VSX */ | ||
106 | #ifdef CONFIG_SPE | 113 | #ifdef CONFIG_SPE |
107 | EXPORT_SYMBOL(giveup_spe); | 114 | EXPORT_SYMBOL(giveup_spe); |
108 | #endif /* CONFIG_SPE */ | 115 | #endif /* CONFIG_SPE */ |
@@ -160,7 +167,6 @@ EXPORT_SYMBOL(screen_info); | |||
160 | EXPORT_SYMBOL(timer_interrupt); | 167 | EXPORT_SYMBOL(timer_interrupt); |
161 | EXPORT_SYMBOL(irq_desc); | 168 | EXPORT_SYMBOL(irq_desc); |
162 | EXPORT_SYMBOL(tb_ticks_per_jiffy); | 169 | EXPORT_SYMBOL(tb_ticks_per_jiffy); |
163 | EXPORT_SYMBOL(console_drivers); | ||
164 | EXPORT_SYMBOL(cacheable_memcpy); | 170 | EXPORT_SYMBOL(cacheable_memcpy); |
165 | #endif | 171 | #endif |
166 | 172 | ||