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/cris/kernel/crisksyms.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/cris/kernel/crisksyms.c')
-rw-r--r-- | arch/cris/kernel/crisksyms.c | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/arch/cris/kernel/crisksyms.c b/arch/cris/kernel/crisksyms.c new file mode 100644 index 000000000000..7141bbecd7e4 --- /dev/null +++ b/arch/cris/kernel/crisksyms.c | |||
@@ -0,0 +1,103 @@ | |||
1 | #include <linux/config.h> | ||
2 | #include <linux/module.h> | ||
3 | #include <linux/user.h> | ||
4 | #include <linux/elfcore.h> | ||
5 | #include <linux/sched.h> | ||
6 | #include <linux/in6.h> | ||
7 | #include <linux/interrupt.h> | ||
8 | #include <linux/smp_lock.h> | ||
9 | #include <linux/pm.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/string.h> | ||
12 | #include <linux/tty.h> | ||
13 | |||
14 | #include <asm/semaphore.h> | ||
15 | #include <asm/processor.h> | ||
16 | #include <asm/uaccess.h> | ||
17 | #include <asm/checksum.h> | ||
18 | #include <asm/io.h> | ||
19 | #include <asm/delay.h> | ||
20 | #include <asm/irq.h> | ||
21 | #include <asm/pgtable.h> | ||
22 | #include <asm/fasttimer.h> | ||
23 | |||
24 | extern void dump_thread(struct pt_regs *, struct user *); | ||
25 | extern unsigned long get_cmos_time(void); | ||
26 | extern void __Udiv(void); | ||
27 | extern void __Umod(void); | ||
28 | extern void __Div(void); | ||
29 | extern void __Mod(void); | ||
30 | extern void __ashrdi3(void); | ||
31 | extern void iounmap(void *addr); | ||
32 | |||
33 | /* Platform dependent support */ | ||
34 | EXPORT_SYMBOL(dump_thread); | ||
35 | EXPORT_SYMBOL(enable_irq); | ||
36 | EXPORT_SYMBOL(disable_irq); | ||
37 | EXPORT_SYMBOL(kernel_thread); | ||
38 | EXPORT_SYMBOL(get_cmos_time); | ||
39 | EXPORT_SYMBOL(loops_per_usec); | ||
40 | |||
41 | /* String functions */ | ||
42 | EXPORT_SYMBOL(memcmp); | ||
43 | EXPORT_SYMBOL(memmove); | ||
44 | EXPORT_SYMBOL(strpbrk); | ||
45 | EXPORT_SYMBOL(strstr); | ||
46 | EXPORT_SYMBOL(strcpy); | ||
47 | EXPORT_SYMBOL(strchr); | ||
48 | EXPORT_SYMBOL(strcmp); | ||
49 | EXPORT_SYMBOL(strlen); | ||
50 | EXPORT_SYMBOL(strcat); | ||
51 | EXPORT_SYMBOL(strncat); | ||
52 | EXPORT_SYMBOL(strncmp); | ||
53 | EXPORT_SYMBOL(strncpy); | ||
54 | |||
55 | /* Math functions */ | ||
56 | EXPORT_SYMBOL(__Udiv); | ||
57 | EXPORT_SYMBOL(__Umod); | ||
58 | EXPORT_SYMBOL(__Div); | ||
59 | EXPORT_SYMBOL(__Mod); | ||
60 | EXPORT_SYMBOL(__ashrdi3); | ||
61 | |||
62 | /* Memory functions */ | ||
63 | EXPORT_SYMBOL(__ioremap); | ||
64 | EXPORT_SYMBOL(iounmap); | ||
65 | |||
66 | /* Semaphore functions */ | ||
67 | EXPORT_SYMBOL(__up); | ||
68 | EXPORT_SYMBOL(__down); | ||
69 | EXPORT_SYMBOL(__down_interruptible); | ||
70 | EXPORT_SYMBOL(__down_trylock); | ||
71 | |||
72 | /* Export shadow registers for the CPU I/O pins */ | ||
73 | EXPORT_SYMBOL(genconfig_shadow); | ||
74 | EXPORT_SYMBOL(port_pa_data_shadow); | ||
75 | EXPORT_SYMBOL(port_pa_dir_shadow); | ||
76 | EXPORT_SYMBOL(port_pb_data_shadow); | ||
77 | EXPORT_SYMBOL(port_pb_dir_shadow); | ||
78 | EXPORT_SYMBOL(port_pb_config_shadow); | ||
79 | EXPORT_SYMBOL(port_g_data_shadow); | ||
80 | |||
81 | /* Userspace access functions */ | ||
82 | EXPORT_SYMBOL(__copy_user_zeroing); | ||
83 | EXPORT_SYMBOL(__copy_user); | ||
84 | |||
85 | /* Cache flush functions */ | ||
86 | EXPORT_SYMBOL(flush_etrax_cache); | ||
87 | EXPORT_SYMBOL(prepare_rx_descriptor); | ||
88 | |||
89 | #undef memcpy | ||
90 | #undef memset | ||
91 | extern void * memset(void *, int, __kernel_size_t); | ||
92 | extern void * memcpy(void *, const void *, __kernel_size_t); | ||
93 | EXPORT_SYMBOL(memcpy); | ||
94 | EXPORT_SYMBOL(memset); | ||
95 | |||
96 | #ifdef CONFIG_ETRAX_FAST_TIMER | ||
97 | /* Fast timer functions */ | ||
98 | EXPORT_SYMBOL(fast_timer_list); | ||
99 | EXPORT_SYMBOL(start_one_shot_timer); | ||
100 | EXPORT_SYMBOL(del_fast_timer); | ||
101 | EXPORT_SYMBOL(schedule_usleep); | ||
102 | #endif | ||
103 | |||