diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-11 04:22:55 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:46 -0500 |
commit | 4b7be4f2e0235c6824641503e2a8ff3b85e105d7 (patch) | |
tree | 5e6385a45371fcc69cebeaab8bad452fc96b9990 /arch/sh/kernel | |
parent | 343ac72248d360f1fae72176aca1117be19189ec (diff) |
sh: Split out sh_ksyms.c in to _32 and _64 variants.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/Makefile_32 | 2 | ||||
-rw-r--r-- | arch/sh/kernel/Makefile_64 | 2 | ||||
-rw-r--r-- | arch/sh/kernel/sh_ksyms_32.c (renamed from arch/sh/kernel/sh_ksyms.c) | 2 | ||||
-rw-r--r-- | arch/sh/kernel/sh_ksyms_64.c | 56 |
4 files changed, 58 insertions, 4 deletions
diff --git a/arch/sh/kernel/Makefile_32 b/arch/sh/kernel/Makefile_32 index c5a85bfbd451..5c7fa594d6d1 100644 --- a/arch/sh/kernel/Makefile_32 +++ b/arch/sh/kernel/Makefile_32 | |||
@@ -15,7 +15,7 @@ obj-$(CONFIG_CF_ENABLER) += cf-enabler.o | |||
15 | obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o | 15 | obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o |
16 | obj-$(CONFIG_SH_KGDB) += kgdb_stub.o kgdb_jmp.o | 16 | obj-$(CONFIG_SH_KGDB) += kgdb_stub.o kgdb_jmp.o |
17 | obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o | 17 | obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o |
18 | obj-$(CONFIG_MODULES) += sh_ksyms.o module.o | 18 | obj-$(CONFIG_MODULES) += sh_ksyms_32.o module.o |
19 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 19 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
20 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | 20 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o |
21 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | 21 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o |
diff --git a/arch/sh/kernel/Makefile_64 b/arch/sh/kernel/Makefile_64 index 41b3efc25686..585b6a11d3f6 100644 --- a/arch/sh/kernel/Makefile_64 +++ b/arch/sh/kernel/Makefile_64 | |||
@@ -11,7 +11,7 @@ obj-$(CONFIG_CF_ENABLER) += cf-enabler.o | |||
11 | obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o | 11 | obj-$(CONFIG_SH_STANDARD_BIOS) += sh_bios.o |
12 | obj-$(CONFIG_SH_KGDB) += kgdb_stub.o kgdb_jmp.o | 12 | obj-$(CONFIG_SH_KGDB) += kgdb_stub.o kgdb_jmp.o |
13 | obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o | 13 | obj-$(CONFIG_SH_CPU_FREQ) += cpufreq.o |
14 | obj-$(CONFIG_MODULES) += sh_ksyms.o module.o | 14 | obj-$(CONFIG_MODULES) += sh_ksyms_64.o module.o |
15 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | 15 | obj-$(CONFIG_EARLY_PRINTK) += early_printk.o |
16 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | 16 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o |
17 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | 17 | obj-$(CONFIG_CRASH_DUMP) += crash_dump.o |
diff --git a/arch/sh/kernel/sh_ksyms.c b/arch/sh/kernel/sh_ksyms_32.c index bc5239ef88ce..e1a6de9088b5 100644 --- a/arch/sh/kernel/sh_ksyms.c +++ b/arch/sh/kernel/sh_ksyms_32.c | |||
@@ -141,9 +141,7 @@ EXPORT_SYMBOL(clear_user_page); | |||
141 | #endif | 141 | #endif |
142 | 142 | ||
143 | EXPORT_SYMBOL(csum_partial); | 143 | EXPORT_SYMBOL(csum_partial); |
144 | #ifdef CONFIG_SUPERH32 | ||
145 | EXPORT_SYMBOL(csum_partial_copy_generic); | 144 | EXPORT_SYMBOL(csum_partial_copy_generic); |
146 | #endif | ||
147 | #ifdef CONFIG_IPV6 | 145 | #ifdef CONFIG_IPV6 |
148 | EXPORT_SYMBOL(csum_ipv6_magic); | 146 | EXPORT_SYMBOL(csum_ipv6_magic); |
149 | #endif | 147 | #endif |
diff --git a/arch/sh/kernel/sh_ksyms_64.c b/arch/sh/kernel/sh_ksyms_64.c new file mode 100644 index 000000000000..fbc991c33f5a --- /dev/null +++ b/arch/sh/kernel/sh_ksyms_64.c | |||
@@ -0,0 +1,56 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * arch/sh64/kernel/sh_ksyms.c | ||
7 | * | ||
8 | * Copyright (C) 2000, 2001 Paolo Alberelli | ||
9 | * | ||
10 | */ | ||
11 | #include <linux/rwsem.h> | ||
12 | #include <linux/module.h> | ||
13 | #include <linux/smp.h> | ||
14 | #include <linux/user.h> | ||
15 | #include <linux/elfcore.h> | ||
16 | #include <linux/sched.h> | ||
17 | #include <linux/in6.h> | ||
18 | #include <linux/interrupt.h> | ||
19 | #include <linux/screen_info.h> | ||
20 | #include <asm/semaphore.h> | ||
21 | #include <asm/processor.h> | ||
22 | #include <asm/uaccess.h> | ||
23 | #include <asm/checksum.h> | ||
24 | #include <asm/io.h> | ||
25 | #include <asm/delay.h> | ||
26 | #include <asm/irq.h> | ||
27 | |||
28 | extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); | ||
29 | |||
30 | /* platform dependent support */ | ||
31 | EXPORT_SYMBOL(dump_fpu); | ||
32 | EXPORT_SYMBOL(kernel_thread); | ||
33 | |||
34 | /* Networking helper routines. */ | ||
35 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | ||
36 | |||
37 | #ifdef CONFIG_VT | ||
38 | EXPORT_SYMBOL(screen_info); | ||
39 | #endif | ||
40 | |||
41 | EXPORT_SYMBOL(__down); | ||
42 | EXPORT_SYMBOL(__down_trylock); | ||
43 | EXPORT_SYMBOL(__up); | ||
44 | EXPORT_SYMBOL(__put_user_asm_l); | ||
45 | EXPORT_SYMBOL(__get_user_asm_l); | ||
46 | EXPORT_SYMBOL(__copy_user); | ||
47 | EXPORT_SYMBOL(memcpy); | ||
48 | EXPORT_SYMBOL(__udelay); | ||
49 | EXPORT_SYMBOL(__ndelay); | ||
50 | |||
51 | /* Ugh. These come in from libgcc.a at link time. */ | ||
52 | #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) | ||
53 | |||
54 | DECLARE_EXPORT(__sdivsi3); | ||
55 | DECLARE_EXPORT(__muldi3); | ||
56 | DECLARE_EXPORT(__udivsi3); | ||