aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/sh_ksyms_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/sh_ksyms_64.c')
-rw-r--r--arch/sh/kernel/sh_ksyms_64.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/arch/sh/kernel/sh_ksyms_64.c b/arch/sh/kernel/sh_ksyms_64.c
new file mode 100644
index 00000000000..8004c38d3d3
--- /dev/null
+++ b/arch/sh/kernel/sh_ksyms_64.c
@@ -0,0 +1,55 @@
1/*
2 * arch/sh/kernel/sh_ksyms_64.c
3 *
4 * Copyright (C) 2000, 2001 Paolo Alberelli
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10#include <linux/rwsem.h>
11#include <linux/module.h>
12#include <linux/smp.h>
13#include <linux/user.h>
14#include <linux/elfcore.h>
15#include <linux/sched.h>
16#include <linux/in6.h>
17#include <linux/interrupt.h>
18#include <linux/screen_info.h>
19#include <asm/semaphore.h>
20#include <asm/processor.h>
21#include <asm/uaccess.h>
22#include <asm/checksum.h>
23#include <asm/io.h>
24#include <asm/delay.h>
25#include <asm/irq.h>
26
27extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);
28
29/* platform dependent support */
30EXPORT_SYMBOL(dump_fpu);
31EXPORT_SYMBOL(kernel_thread);
32
33/* Networking helper routines. */
34EXPORT_SYMBOL(csum_partial_copy_nocheck);
35
36#ifdef CONFIG_VT
37EXPORT_SYMBOL(screen_info);
38#endif
39
40EXPORT_SYMBOL(__down);
41EXPORT_SYMBOL(__down_trylock);
42EXPORT_SYMBOL(__up);
43EXPORT_SYMBOL(__put_user_asm_l);
44EXPORT_SYMBOL(__get_user_asm_l);
45EXPORT_SYMBOL(__copy_user);
46EXPORT_SYMBOL(memcpy);
47EXPORT_SYMBOL(__udelay);
48EXPORT_SYMBOL(__ndelay);
49
50/* Ugh. These come in from libgcc.a at link time. */
51#define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name)
52
53DECLARE_EXPORT(__sdivsi3);
54DECLARE_EXPORT(__muldi3);
55DECLARE_EXPORT(__udivsi3);