diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-31 03:38:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 18:39:39 -0400 |
commit | 99eb8a550dbccc0e1f6c7e866fe421810e0585f6 (patch) | |
tree | 130c6e3338a0655ba74355eba83afab9261e1ed0 /arch/arm26/kernel/armksyms.c | |
parent | 0d0ed42e5ca2e22465c591341839c18025748fe8 (diff) |
Remove the arm26 port
The arm26 port has been in a state where it was far from even compiling
for quite some time.
Ian Molton agreed with the removal.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Ian Molton <spyro@f2s.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm26/kernel/armksyms.c')
-rw-r--r-- | arch/arm26/kernel/armksyms.c | 204 |
1 files changed, 0 insertions, 204 deletions
diff --git a/arch/arm26/kernel/armksyms.c b/arch/arm26/kernel/armksyms.c deleted file mode 100644 index fe1e3ceed7c..00000000000 --- a/arch/arm26/kernel/armksyms.c +++ /dev/null | |||
@@ -1,204 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/arm26/kernel/armksyms.c | ||
3 | * | ||
4 | * Copyright (C) 2003 Ian Molton | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/module.h> | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/user.h> | ||
13 | #include <linux/string.h> | ||
14 | #include <linux/fs.h> | ||
15 | #include <linux/mm.h> | ||
16 | #include <linux/mman.h> | ||
17 | #include <linux/delay.h> | ||
18 | #include <linux/in6.h> | ||
19 | #include <linux/interrupt.h> | ||
20 | #include <linux/pm.h> | ||
21 | #include <linux/tty.h> | ||
22 | #include <linux/vt_kern.h> | ||
23 | #include <linux/syscalls.h> | ||
24 | |||
25 | #include <asm/byteorder.h> | ||
26 | #include <asm/elf.h> | ||
27 | #include <asm/io.h> | ||
28 | #include <asm/irq.h> | ||
29 | #include <asm/processor.h> | ||
30 | #include <asm/semaphore.h> | ||
31 | #include <asm/system.h> | ||
32 | #include <asm/uaccess.h> | ||
33 | #include <asm/checksum.h> | ||
34 | #include <asm/mach-types.h> | ||
35 | |||
36 | extern int dump_fpu(struct pt_regs *, struct user_fp_struct *); | ||
37 | extern void inswb(unsigned int port, void *to, int len); | ||
38 | extern void outswb(unsigned int port, const void *to, int len); | ||
39 | |||
40 | extern void __bad_xchg(volatile void *ptr, int size); | ||
41 | |||
42 | /* | ||
43 | * libgcc functions - functions that are used internally by the | ||
44 | * compiler... (prototypes are not correct though, but that | ||
45 | * doesn't really matter since they're not versioned). | ||
46 | */ | ||
47 | extern void __ashldi3(void); | ||
48 | extern void __ashrdi3(void); | ||
49 | extern void __divsi3(void); | ||
50 | extern void __lshrdi3(void); | ||
51 | extern void __modsi3(void); | ||
52 | extern void __muldi3(void); | ||
53 | extern void __ucmpdi2(void); | ||
54 | extern void __udivdi3(void); | ||
55 | extern void __umoddi3(void); | ||
56 | extern void __udivmoddi4(void); | ||
57 | extern void __udivsi3(void); | ||
58 | extern void __umodsi3(void); | ||
59 | extern void abort(void); | ||
60 | |||
61 | extern void ret_from_exception(void); | ||
62 | extern void fpundefinstr(void); | ||
63 | extern void fp_enter(void); | ||
64 | |||
65 | /* | ||
66 | * This has a special calling convention; it doesn't | ||
67 | * modify any of the usual registers, except for LR. | ||
68 | * FIXME - we used to use our own local version - looks to be in kernel/softirq now | ||
69 | */ | ||
70 | //extern void __do_softirq(void); | ||
71 | |||
72 | #define EXPORT_SYMBOL_ALIAS(sym,orig) \ | ||
73 | const char __kstrtab_##sym[] \ | ||
74 | __attribute__((section(".kstrtab"))) = \ | ||
75 | __MODULE_STRING(sym); \ | ||
76 | const struct module_symbol __ksymtab_##sym \ | ||
77 | __attribute__((section("__ksymtab"))) = \ | ||
78 | { (unsigned long)&orig, __kstrtab_##sym }; | ||
79 | |||
80 | /* | ||
81 | * floating point math emulator support. | ||
82 | * These symbols will never change their calling convention... | ||
83 | */ | ||
84 | EXPORT_SYMBOL_ALIAS(kern_fp_enter,fp_enter); | ||
85 | EXPORT_SYMBOL_ALIAS(fp_printk,printk); | ||
86 | EXPORT_SYMBOL_ALIAS(fp_send_sig,send_sig); | ||
87 | |||
88 | EXPORT_SYMBOL(fpundefinstr); | ||
89 | EXPORT_SYMBOL(ret_from_exception); | ||
90 | |||
91 | #ifdef CONFIG_VT | ||
92 | EXPORT_SYMBOL(kd_mksound); | ||
93 | #endif | ||
94 | |||
95 | //EXPORT_SYMBOL(__do_softirq); | ||
96 | |||
97 | /* platform dependent support */ | ||
98 | EXPORT_SYMBOL(dump_thread); | ||
99 | EXPORT_SYMBOL(dump_fpu); | ||
100 | EXPORT_SYMBOL(udelay); | ||
101 | EXPORT_SYMBOL(kernel_thread); | ||
102 | EXPORT_SYMBOL(system_rev); | ||
103 | EXPORT_SYMBOL(system_serial_low); | ||
104 | EXPORT_SYMBOL(system_serial_high); | ||
105 | #ifdef CONFIG_DEBUG_BUGVERBOSE | ||
106 | EXPORT_SYMBOL(__bug); | ||
107 | #endif | ||
108 | EXPORT_SYMBOL(__bad_xchg); | ||
109 | EXPORT_SYMBOL(__readwrite_bug); | ||
110 | EXPORT_SYMBOL(set_irq_type); | ||
111 | EXPORT_SYMBOL(pm_idle); | ||
112 | EXPORT_SYMBOL(pm_power_off); | ||
113 | |||
114 | /* processor dependencies */ | ||
115 | EXPORT_SYMBOL(__machine_arch_type); | ||
116 | |||
117 | /* networking */ | ||
118 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | ||
119 | EXPORT_SYMBOL(__csum_ipv6_magic); | ||
120 | |||
121 | /* io */ | ||
122 | #ifndef __raw_readsb | ||
123 | EXPORT_SYMBOL(__raw_readsb); | ||
124 | #endif | ||
125 | #ifndef __raw_readsw | ||
126 | EXPORT_SYMBOL(__raw_readsw); | ||
127 | #endif | ||
128 | #ifndef __raw_readsl | ||
129 | EXPORT_SYMBOL(__raw_readsl); | ||
130 | #endif | ||
131 | #ifndef __raw_writesb | ||
132 | EXPORT_SYMBOL(__raw_writesb); | ||
133 | #endif | ||
134 | #ifndef __raw_writesw | ||
135 | EXPORT_SYMBOL(__raw_writesw); | ||
136 | #endif | ||
137 | #ifndef __raw_writesl | ||
138 | EXPORT_SYMBOL(__raw_writesl); | ||
139 | #endif | ||
140 | |||
141 | /* string / mem functions */ | ||
142 | EXPORT_SYMBOL(strcpy); | ||
143 | EXPORT_SYMBOL(strncpy); | ||
144 | EXPORT_SYMBOL(strcat); | ||
145 | EXPORT_SYMBOL(strncat); | ||
146 | EXPORT_SYMBOL(strcmp); | ||
147 | EXPORT_SYMBOL(strncmp); | ||
148 | EXPORT_SYMBOL(strchr); | ||
149 | EXPORT_SYMBOL(strlen); | ||
150 | EXPORT_SYMBOL(strnlen); | ||
151 | EXPORT_SYMBOL(strrchr); | ||
152 | EXPORT_SYMBOL(strstr); | ||
153 | EXPORT_SYMBOL(memset); | ||
154 | EXPORT_SYMBOL(memcpy); | ||
155 | EXPORT_SYMBOL(memmove); | ||
156 | EXPORT_SYMBOL(memcmp); | ||
157 | EXPORT_SYMBOL(memscan); | ||
158 | EXPORT_SYMBOL(__memzero); | ||
159 | |||
160 | /* user mem (segment) */ | ||
161 | EXPORT_SYMBOL(uaccess_kernel); | ||
162 | EXPORT_SYMBOL(uaccess_user); | ||
163 | |||
164 | EXPORT_SYMBOL(__get_user_1); | ||
165 | EXPORT_SYMBOL(__get_user_2); | ||
166 | EXPORT_SYMBOL(__get_user_4); | ||
167 | EXPORT_SYMBOL(__get_user_8); | ||
168 | |||
169 | EXPORT_SYMBOL(__put_user_1); | ||
170 | EXPORT_SYMBOL(__put_user_2); | ||
171 | EXPORT_SYMBOL(__put_user_4); | ||
172 | EXPORT_SYMBOL(__put_user_8); | ||
173 | |||
174 | /* gcc lib functions */ | ||
175 | EXPORT_SYMBOL(__ashldi3); | ||
176 | EXPORT_SYMBOL(__ashrdi3); | ||
177 | EXPORT_SYMBOL(__divsi3); | ||
178 | EXPORT_SYMBOL(__lshrdi3); | ||
179 | EXPORT_SYMBOL(__modsi3); | ||
180 | EXPORT_SYMBOL(__muldi3); | ||
181 | EXPORT_SYMBOL(__ucmpdi2); | ||
182 | EXPORT_SYMBOL(__udivdi3); | ||
183 | EXPORT_SYMBOL(__umoddi3); | ||
184 | EXPORT_SYMBOL(__udivmoddi4); | ||
185 | EXPORT_SYMBOL(__udivsi3); | ||
186 | EXPORT_SYMBOL(__umodsi3); | ||
187 | |||
188 | /* bitops */ | ||
189 | EXPORT_SYMBOL(_set_bit_le); | ||
190 | EXPORT_SYMBOL(_test_and_set_bit_le); | ||
191 | EXPORT_SYMBOL(_clear_bit_le); | ||
192 | EXPORT_SYMBOL(_test_and_clear_bit_le); | ||
193 | EXPORT_SYMBOL(_change_bit_le); | ||
194 | EXPORT_SYMBOL(_test_and_change_bit_le); | ||
195 | EXPORT_SYMBOL(_find_first_zero_bit_le); | ||
196 | EXPORT_SYMBOL(_find_next_zero_bit_le); | ||
197 | |||
198 | /* elf */ | ||
199 | EXPORT_SYMBOL(elf_platform); | ||
200 | EXPORT_SYMBOL(elf_hwcap); | ||
201 | |||
202 | #ifdef CONFIG_PREEMPT | ||
203 | EXPORT_SYMBOL(kernel_flag); | ||
204 | #endif | ||