aboutsummaryrefslogtreecommitdiffstats
path: root/arch/v850/kernel/v850_ksyms.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/v850/kernel/v850_ksyms.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/v850/kernel/v850_ksyms.c')
-rw-r--r--arch/v850/kernel/v850_ksyms.c78
1 files changed, 78 insertions, 0 deletions
diff --git a/arch/v850/kernel/v850_ksyms.c b/arch/v850/kernel/v850_ksyms.c
new file mode 100644
index 000000000000..0ca64900dd91
--- /dev/null
+++ b/arch/v850/kernel/v850_ksyms.c
@@ -0,0 +1,78 @@
1#include <linux/module.h>
2#include <linux/linkage.h>
3#include <linux/sched.h>
4#include <linux/string.h>
5#include <linux/mm.h>
6#include <linux/user.h>
7#include <linux/elfcore.h>
8#include <linux/in6.h>
9#include <linux/interrupt.h>
10#include <linux/config.h>
11
12#include <asm/pgalloc.h>
13#include <asm/irq.h>
14#include <asm/io.h>
15#include <asm/semaphore.h>
16#include <asm/checksum.h>
17#include <asm/current.h>
18
19
20extern void *trap_table;
21EXPORT_SYMBOL (trap_table);
22
23/* platform dependent support */
24extern void dump_thread (struct pt_regs *, struct user *);
25EXPORT_SYMBOL (dump_thread);
26EXPORT_SYMBOL (kernel_thread);
27EXPORT_SYMBOL (enable_irq);
28EXPORT_SYMBOL (disable_irq);
29EXPORT_SYMBOL (disable_irq_nosync);
30EXPORT_SYMBOL (__bug);
31
32/* Networking helper routines. */
33EXPORT_SYMBOL (csum_partial_copy);
34EXPORT_SYMBOL (csum_partial_copy_from_user);
35EXPORT_SYMBOL (ip_compute_csum);
36EXPORT_SYMBOL (ip_fast_csum);
37
38/* string / mem functions */
39EXPORT_SYMBOL (strcpy);
40EXPORT_SYMBOL (strncpy);
41EXPORT_SYMBOL (strcat);
42EXPORT_SYMBOL (strncat);
43EXPORT_SYMBOL (strcmp);
44EXPORT_SYMBOL (strncmp);
45EXPORT_SYMBOL (strchr);
46EXPORT_SYMBOL (strlen);
47EXPORT_SYMBOL (strnlen);
48EXPORT_SYMBOL (strpbrk);
49EXPORT_SYMBOL (strrchr);
50EXPORT_SYMBOL (strstr);
51EXPORT_SYMBOL (memset);
52EXPORT_SYMBOL (memcpy);
53EXPORT_SYMBOL (memmove);
54EXPORT_SYMBOL (memcmp);
55EXPORT_SYMBOL (memscan);
56
57/* semaphores */
58EXPORT_SYMBOL (__down);
59EXPORT_SYMBOL (__down_interruptible);
60EXPORT_SYMBOL (__down_trylock);
61EXPORT_SYMBOL (__up);
62
63/*
64 * libgcc functions - functions that are used internally by the
65 * compiler... (prototypes are not correct though, but that
66 * doesn't really matter since they're not versioned).
67 */
68extern void __ashldi3 (void);
69extern void __ashrdi3 (void);
70extern void __lshrdi3 (void);
71extern void __muldi3 (void);
72extern void __negdi2 (void);
73
74EXPORT_SYMBOL (__ashldi3);
75EXPORT_SYMBOL (__ashrdi3);
76EXPORT_SYMBOL (__lshrdi3);
77EXPORT_SYMBOL (__muldi3);
78EXPORT_SYMBOL (__negdi2);