| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/module.h> | 
|  | 2 | #include <linux/smp.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/vmalloc.h> | 
|  | 10 | #include <linux/pci.h> | 
|  | 11 | #include <linux/irq.h> | 
|  | 12 |  | 
|  | 13 | #include <asm/semaphore.h> | 
|  | 14 | #include <asm/processor.h> | 
|  | 15 | #include <asm/uaccess.h> | 
|  | 16 | #include <asm/checksum.h> | 
|  | 17 | #include <asm/io.h> | 
|  | 18 | #include <asm/delay.h> | 
|  | 19 | #include <asm/tlbflush.h> | 
|  | 20 | #include <asm/cacheflush.h> | 
|  | 21 | #include <asm/checksum.h> | 
|  | 22 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); | 
|  | 24 | extern struct hw_interrupt_type no_irq_type; | 
|  | 25 |  | 
|  | 26 | EXPORT_SYMBOL(sh_mv); | 
|  | 27 |  | 
|  | 28 | /* platform dependent support */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | EXPORT_SYMBOL(dump_fpu); | 
|  | 30 | EXPORT_SYMBOL(iounmap); | 
|  | 31 | EXPORT_SYMBOL(enable_irq); | 
|  | 32 | EXPORT_SYMBOL(disable_irq); | 
|  | 33 | EXPORT_SYMBOL(probe_irq_mask); | 
|  | 34 | EXPORT_SYMBOL(kernel_thread); | 
|  | 35 | EXPORT_SYMBOL(disable_irq_nosync); | 
|  | 36 | EXPORT_SYMBOL(irq_desc); | 
|  | 37 | EXPORT_SYMBOL(no_irq_type); | 
|  | 38 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | EXPORT_SYMBOL(strstr); | 
|  | 40 | EXPORT_SYMBOL(strlen); | 
|  | 41 | EXPORT_SYMBOL(strnlen); | 
|  | 42 | EXPORT_SYMBOL(strchr); | 
|  | 43 | EXPORT_SYMBOL(strcat); | 
|  | 44 | EXPORT_SYMBOL(strncat); | 
|  | 45 |  | 
|  | 46 | /* PCI exports */ | 
|  | 47 | #ifdef CONFIG_PCI | 
|  | 48 | EXPORT_SYMBOL(pci_alloc_consistent); | 
|  | 49 | EXPORT_SYMBOL(pci_free_consistent); | 
|  | 50 | #endif | 
|  | 51 |  | 
|  | 52 | /* mem exports */ | 
|  | 53 | EXPORT_SYMBOL(memchr); | 
|  | 54 | EXPORT_SYMBOL(memcpy); | 
|  | 55 | EXPORT_SYMBOL(memcpy_fromio); | 
|  | 56 | EXPORT_SYMBOL(memcpy_toio); | 
|  | 57 | EXPORT_SYMBOL(memset); | 
|  | 58 | EXPORT_SYMBOL(memset_io); | 
|  | 59 | EXPORT_SYMBOL(memmove); | 
|  | 60 | EXPORT_SYMBOL(memcmp); | 
|  | 61 | EXPORT_SYMBOL(memscan); | 
|  | 62 | EXPORT_SYMBOL(__copy_user); | 
|  | 63 | EXPORT_SYMBOL(boot_cpu_data); | 
|  | 64 |  | 
|  | 65 | #ifdef CONFIG_MMU | 
|  | 66 | EXPORT_SYMBOL(get_vm_area); | 
|  | 67 | #endif | 
|  | 68 |  | 
|  | 69 | /* semaphore exports */ | 
|  | 70 | EXPORT_SYMBOL(__up); | 
|  | 71 | EXPORT_SYMBOL(__down); | 
|  | 72 | EXPORT_SYMBOL(__down_interruptible); | 
|  | 73 |  | 
|  | 74 | EXPORT_SYMBOL(__udelay); | 
|  | 75 | EXPORT_SYMBOL(__ndelay); | 
|  | 76 | EXPORT_SYMBOL(__const_udelay); | 
|  | 77 |  | 
|  | 78 | EXPORT_SYMBOL(__div64_32); | 
|  | 79 |  | 
|  | 80 | #define DECLARE_EXPORT(name) extern void name(void);EXPORT_SYMBOL(name) | 
|  | 81 |  | 
|  | 82 | /* These symbols are generated by the compiler itself */ | 
|  | 83 | DECLARE_EXPORT(__udivsi3); | 
|  | 84 | DECLARE_EXPORT(__udivdi3); | 
|  | 85 | DECLARE_EXPORT(__sdivsi3); | 
|  | 86 | DECLARE_EXPORT(__ashrdi3); | 
|  | 87 | DECLARE_EXPORT(__ashldi3); | 
|  | 88 | DECLARE_EXPORT(__lshrdi3); | 
|  | 89 | DECLARE_EXPORT(__movstr); | 
|  | 90 |  | 
|  | 91 | EXPORT_SYMBOL(strcpy); | 
|  | 92 |  | 
|  | 93 | #ifdef CONFIG_CPU_SH4 | 
|  | 94 | DECLARE_EXPORT(__movstr_i4_even); | 
|  | 95 | DECLARE_EXPORT(__movstr_i4_odd); | 
|  | 96 | DECLARE_EXPORT(__movstrSI12_i4); | 
|  | 97 |  | 
|  | 98 | /* needed by some modules */ | 
|  | 99 | EXPORT_SYMBOL(flush_cache_all); | 
|  | 100 | EXPORT_SYMBOL(flush_cache_range); | 
|  | 101 | EXPORT_SYMBOL(flush_dcache_page); | 
|  | 102 | EXPORT_SYMBOL(__flush_purge_region); | 
|  | 103 | #endif | 
|  | 104 |  | 
|  | 105 | #if defined(CONFIG_SH7705_CACHE_32KB) | 
|  | 106 | EXPORT_SYMBOL(flush_cache_all); | 
|  | 107 | EXPORT_SYMBOL(flush_cache_range); | 
|  | 108 | EXPORT_SYMBOL(flush_dcache_page); | 
|  | 109 | EXPORT_SYMBOL(__flush_purge_region); | 
|  | 110 | #endif | 
|  | 111 |  | 
|  | 112 | EXPORT_SYMBOL(flush_tlb_page); | 
|  | 113 | EXPORT_SYMBOL(__down_trylock); | 
|  | 114 |  | 
|  | 115 | #ifdef CONFIG_SMP | 
|  | 116 | EXPORT_SYMBOL(synchronize_irq); | 
|  | 117 | #endif | 
|  | 118 |  | 
|  | 119 | EXPORT_SYMBOL(csum_partial); | 
|  | 120 | EXPORT_SYMBOL(csum_ipv6_magic); | 
|  | 121 | EXPORT_SYMBOL(consistent_sync); | 
|  | 122 | EXPORT_SYMBOL(clear_page); |