diff options
Diffstat (limited to 'arch/sh64/kernel/sh_ksyms.c')
-rw-r--r-- | arch/sh64/kernel/sh_ksyms.c | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/arch/sh64/kernel/sh_ksyms.c b/arch/sh64/kernel/sh_ksyms.c index 461ea3de316f..962c732961e4 100644 --- a/arch/sh64/kernel/sh_ksyms.c +++ b/arch/sh64/kernel/sh_ksyms.c | |||
@@ -31,16 +31,11 @@ extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); | |||
31 | 31 | ||
32 | /* platform dependent support */ | 32 | /* platform dependent support */ |
33 | EXPORT_SYMBOL(dump_fpu); | 33 | EXPORT_SYMBOL(dump_fpu); |
34 | EXPORT_SYMBOL(iounmap); | ||
35 | EXPORT_SYMBOL(enable_irq); | ||
36 | EXPORT_SYMBOL(disable_irq); | ||
37 | EXPORT_SYMBOL(kernel_thread); | 34 | EXPORT_SYMBOL(kernel_thread); |
38 | 35 | ||
39 | /* Networking helper routines. */ | 36 | /* Networking helper routines. */ |
40 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | 37 | EXPORT_SYMBOL(csum_partial_copy_nocheck); |
41 | 38 | ||
42 | EXPORT_SYMBOL(strstr); | ||
43 | |||
44 | #ifdef CONFIG_VT | 39 | #ifdef CONFIG_VT |
45 | EXPORT_SYMBOL(screen_info); | 40 | EXPORT_SYMBOL(screen_info); |
46 | #endif | 41 | #endif |
@@ -50,27 +45,22 @@ EXPORT_SYMBOL(__down_trylock); | |||
50 | EXPORT_SYMBOL(__up); | 45 | EXPORT_SYMBOL(__up); |
51 | EXPORT_SYMBOL(__put_user_asm_l); | 46 | EXPORT_SYMBOL(__put_user_asm_l); |
52 | EXPORT_SYMBOL(__get_user_asm_l); | 47 | EXPORT_SYMBOL(__get_user_asm_l); |
53 | EXPORT_SYMBOL(memcmp); | ||
54 | EXPORT_SYMBOL(memcpy); | 48 | EXPORT_SYMBOL(memcpy); |
55 | EXPORT_SYMBOL(memset); | ||
56 | EXPORT_SYMBOL(memscan); | ||
57 | EXPORT_SYMBOL(strchr); | ||
58 | EXPORT_SYMBOL(strlen); | ||
59 | 49 | ||
50 | EXPORT_SYMBOL(udelay); | ||
51 | EXPORT_SYMBOL(__udelay); | ||
52 | EXPORT_SYMBOL(ndelay); | ||
53 | EXPORT_SYMBOL(__ndelay); | ||
60 | EXPORT_SYMBOL(flush_dcache_page); | 54 | EXPORT_SYMBOL(flush_dcache_page); |
61 | 55 | ||
62 | /* For ext3 */ | 56 | /* For ext3 */ |
63 | EXPORT_SYMBOL(sh64_page_clear); | 57 | EXPORT_SYMBOL(sh64_page_clear); |
64 | 58 | ||
65 | /* Ugh. These come in from libgcc.a at link time. */ | 59 | /* Ugh. These come in from libgcc.a at link time. */ |
66 | 60 | #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) | |
67 | extern void __sdivsi3(void); | ||
68 | extern void __muldi3(void); | ||
69 | extern void __udivsi3(void); | ||
70 | extern char __div_table; | 61 | extern char __div_table; |
71 | EXPORT_SYMBOL(__sdivsi3); | ||
72 | EXPORT_SYMBOL(__muldi3); | ||
73 | EXPORT_SYMBOL(__udivsi3); | ||
74 | EXPORT_SYMBOL(__div_table); | 62 | EXPORT_SYMBOL(__div_table); |
75 | 63 | ||
76 | 64 | DECLARE_EXPORT(__sdivsi3); | |
65 | DECLARE_EXPORT(__muldi3); | ||
66 | DECLARE_EXPORT(__udivsi3); | ||