diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/h8300/kernel/h8300_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/h8300/kernel/h8300_ksyms.c')
-rw-r--r-- | arch/h8300/kernel/h8300_ksyms.c | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/arch/h8300/kernel/h8300_ksyms.c b/arch/h8300/kernel/h8300_ksyms.c new file mode 100644 index 000000000000..5a630233112f --- /dev/null +++ b/arch/h8300/kernel/h8300_ksyms.c | |||
@@ -0,0 +1,112 @@ | |||
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/setup.h> | ||
13 | #include <asm/pgalloc.h> | ||
14 | #include <asm/irq.h> | ||
15 | #include <asm/io.h> | ||
16 | #include <asm/semaphore.h> | ||
17 | #include <asm/checksum.h> | ||
18 | #include <asm/current.h> | ||
19 | #include <asm/gpio.h> | ||
20 | |||
21 | //asmlinkage long long __ashrdi3 (long long, int); | ||
22 | //asmlinkage long long __lshrdi3 (long long, int); | ||
23 | extern char h8300_debug_device[]; | ||
24 | |||
25 | extern void dump_thread(struct pt_regs *, struct user *); | ||
26 | |||
27 | /* platform dependent support */ | ||
28 | |||
29 | EXPORT_SYMBOL(dump_thread); | ||
30 | EXPORT_SYMBOL(strnlen); | ||
31 | EXPORT_SYMBOL(strrchr); | ||
32 | EXPORT_SYMBOL(strstr); | ||
33 | EXPORT_SYMBOL(strchr); | ||
34 | EXPORT_SYMBOL(strcat); | ||
35 | EXPORT_SYMBOL(strlen); | ||
36 | EXPORT_SYMBOL(strcmp); | ||
37 | EXPORT_SYMBOL(strncmp); | ||
38 | |||
39 | EXPORT_SYMBOL(ip_fast_csum); | ||
40 | |||
41 | EXPORT_SYMBOL(kernel_thread); | ||
42 | EXPORT_SYMBOL(enable_irq); | ||
43 | EXPORT_SYMBOL(disable_irq); | ||
44 | |||
45 | /* Networking helper routines. */ | ||
46 | EXPORT_SYMBOL(csum_partial_copy); | ||
47 | |||
48 | /* The following are special because they're not called | ||
49 | explicitly (the C compiler generates them). Fortunately, | ||
50 | their interface isn't gonna change any time soon now, so | ||
51 | it's OK to leave it out of version control. */ | ||
52 | //EXPORT_SYMBOL(__ashrdi3); | ||
53 | //EXPORT_SYMBOL(__lshrdi3); | ||
54 | EXPORT_SYMBOL(memcpy); | ||
55 | EXPORT_SYMBOL(memset); | ||
56 | EXPORT_SYMBOL(memcmp); | ||
57 | EXPORT_SYMBOL(memscan); | ||
58 | EXPORT_SYMBOL(memmove); | ||
59 | |||
60 | EXPORT_SYMBOL(get_wchan); | ||
61 | |||
62 | /* | ||
63 | * libgcc functions - functions that are used internally by the | ||
64 | * compiler... (prototypes are not correct though, but that | ||
65 | * doesn't really matter since they're not versioned). | ||
66 | */ | ||
67 | extern void __gcc_bcmp(void); | ||
68 | extern void __ashldi3(void); | ||
69 | extern void __ashrdi3(void); | ||
70 | extern void __cmpdi2(void); | ||
71 | extern void __divdi3(void); | ||
72 | extern void __divsi3(void); | ||
73 | extern void __lshrdi3(void); | ||
74 | extern void __moddi3(void); | ||
75 | extern void __modsi3(void); | ||
76 | extern void __muldi3(void); | ||
77 | extern void __mulsi3(void); | ||
78 | extern void __negdi2(void); | ||
79 | extern void __ucmpdi2(void); | ||
80 | extern void __udivdi3(void); | ||
81 | extern void __udivmoddi4(void); | ||
82 | extern void __udivsi3(void); | ||
83 | extern void __umoddi3(void); | ||
84 | extern void __umodsi3(void); | ||
85 | |||
86 | /* gcc lib functions */ | ||
87 | EXPORT_SYMBOL(__gcc_bcmp); | ||
88 | EXPORT_SYMBOL(__ashldi3); | ||
89 | EXPORT_SYMBOL(__ashrdi3); | ||
90 | EXPORT_SYMBOL(__cmpdi2); | ||
91 | EXPORT_SYMBOL(__divdi3); | ||
92 | EXPORT_SYMBOL(__divsi3); | ||
93 | EXPORT_SYMBOL(__lshrdi3); | ||
94 | EXPORT_SYMBOL(__moddi3); | ||
95 | EXPORT_SYMBOL(__modsi3); | ||
96 | EXPORT_SYMBOL(__muldi3); | ||
97 | EXPORT_SYMBOL(__mulsi3); | ||
98 | EXPORT_SYMBOL(__negdi2); | ||
99 | EXPORT_SYMBOL(__ucmpdi2); | ||
100 | EXPORT_SYMBOL(__udivdi3); | ||
101 | EXPORT_SYMBOL(__udivmoddi4); | ||
102 | EXPORT_SYMBOL(__udivsi3); | ||
103 | EXPORT_SYMBOL(__umoddi3); | ||
104 | EXPORT_SYMBOL(__umodsi3); | ||
105 | |||
106 | #ifdef MAGIC_ROM_PTR | ||
107 | EXPORT_SYMBOL(is_in_rom); | ||
108 | #endif | ||
109 | |||
110 | EXPORT_SYMBOL(h8300_reserved_gpio); | ||
111 | EXPORT_SYMBOL(h8300_free_gpio); | ||
112 | EXPORT_SYMBOL(h8300_set_gpio_dir); | ||