diff options
Diffstat (limited to 'arch/sh64/kernel/sh_ksyms.c')
-rw-r--r-- | arch/sh64/kernel/sh_ksyms.c | 32 |
1 files changed, 9 insertions, 23 deletions
diff --git a/arch/sh64/kernel/sh_ksyms.c b/arch/sh64/kernel/sh_ksyms.c index 461ea3de316f..b1705acc8e64 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,18 @@ 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); | 48 | EXPORT_SYMBOL(__copy_user); |
54 | EXPORT_SYMBOL(memcpy); | 49 | EXPORT_SYMBOL(memcpy); |
55 | EXPORT_SYMBOL(memset); | 50 | EXPORT_SYMBOL(udelay); |
56 | EXPORT_SYMBOL(memscan); | 51 | EXPORT_SYMBOL(__udelay); |
57 | EXPORT_SYMBOL(strchr); | 52 | EXPORT_SYMBOL(ndelay); |
58 | EXPORT_SYMBOL(strlen); | 53 | EXPORT_SYMBOL(__ndelay); |
59 | |||
60 | EXPORT_SYMBOL(flush_dcache_page); | 54 | EXPORT_SYMBOL(flush_dcache_page); |
61 | |||
62 | /* For ext3 */ | ||
63 | EXPORT_SYMBOL(sh64_page_clear); | 55 | EXPORT_SYMBOL(sh64_page_clear); |
64 | 56 | ||
65 | /* Ugh. These come in from libgcc.a at link time. */ | 57 | /* Ugh. These come in from libgcc.a at link time. */ |
58 | #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) | ||
66 | 59 | ||
67 | extern void __sdivsi3(void); | 60 | DECLARE_EXPORT(__sdivsi3); |
68 | extern void __muldi3(void); | 61 | DECLARE_EXPORT(__muldi3); |
69 | extern void __udivsi3(void); | 62 | DECLARE_EXPORT(__udivsi3); |
70 | extern char __div_table; | ||
71 | EXPORT_SYMBOL(__sdivsi3); | ||
72 | EXPORT_SYMBOL(__muldi3); | ||
73 | EXPORT_SYMBOL(__udivsi3); | ||
74 | EXPORT_SYMBOL(__div_table); | ||
75 | |||
76 | |||