1 #include <linux/module.h>
2 #include <linux/linkage.h>
3 #include <linux/sched.h>
4 #include <linux/string.h>
6 #include <linux/user.h>
7 #include <linux/elfcore.h>
9 #include <linux/interrupt.h>
11 #include <asm/setup.h>
12 #include <asm/machdep.h>
13 #include <asm/pgtable.h>
15 #include <asm/semaphore.h>
16 #include <asm/checksum.h>
17 #include <asm/hardirq.h>
18 #include <asm/softirq.h>
20 asmlinkage
long long __ashrdi3 (long long, int);
21 extern char m68k_debug_device
[];
23 extern void dump_thread(struct pt_regs
*, struct user
*);
24 extern int dump_fpu(elf_fpregset_t
*);
26 /* platform dependent support */
28 EXPORT_SYMBOL(m68k_machtype
);
29 EXPORT_SYMBOL(m68k_cputype
);
30 EXPORT_SYMBOL(m68k_is040or060
);
31 EXPORT_SYMBOL(cache_push
);
32 EXPORT_SYMBOL(cache_clear
);
33 EXPORT_SYMBOL(mm_vtop
);
34 EXPORT_SYMBOL(mm_ptov
);
35 EXPORT_SYMBOL(mm_end_of_chunk
);
36 EXPORT_SYMBOL(kernel_map
);
37 EXPORT_SYMBOL(m68k_debug_device
);
38 EXPORT_SYMBOL(dump_fpu
);
39 EXPORT_SYMBOL(dump_thread
);
40 EXPORT_SYMBOL(strnlen
);
41 EXPORT_SYMBOL(strrchr
);
42 EXPORT_SYMBOL(strstr
);
43 EXPORT_SYMBOL(local_irq_count
);
44 EXPORT_SYMBOL(local_bh_count
);
45 EXPORT_SYMBOL(enable_irq
);
46 EXPORT_SYMBOL(disable_irq
);
48 /* Networking helper routines. */
49 EXPORT_SYMBOL(csum_partial_copy
);
51 /* The following are special because they're not called
52 explicitly (the C compiler generates them). Fortunately,
53 their interface isn't gonna change any time soon now, so
54 it's OK to leave it out of version control. */
55 EXPORT_SYMBOL_NOVERS(__ashrdi3
);
56 EXPORT_SYMBOL_NOVERS(memcpy
);
57 EXPORT_SYMBOL_NOVERS(memset
);
58 EXPORT_SYMBOL_NOVERS(memcmp
);
60 EXPORT_SYMBOL_NOVERS(__down_failed
);
61 EXPORT_SYMBOL_NOVERS(__down_failed_interruptible
);
62 EXPORT_SYMBOL_NOVERS(__up_wakeup
);