1 /* 2 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu> 3 * Copyright (C) 2008-2009 PetaLogix 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License version 2 as 7 * published by the Free Software Foundation. 8 */ 9 10 #include <linux/module.h> 11 #include <linux/string.h> 12 #include <linux/cryptohash.h> 13 #include <linux/delay.h> 14 #include <linux/in6.h> 15 #include <linux/syscalls.h> 16 17 #include <asm/checksum.h> 18 #include <asm/cacheflush.h> 19 #include <linux/io.h> 20 #include <asm/page.h> 21 #include <linux/ftrace.h> 22 #include <linux/uaccess.h> 23 24 extern char *_ebss; 25 EXPORT_SYMBOL_GPL(_ebss); 26 27 #ifdef CONFIG_FUNCTION_TRACER 28 extern void _mcount(void); 29 EXPORT_SYMBOL(_mcount); 30 #endif 31 32 /* 33 * Assembly functions that may be used (directly or indirectly) by modules 34 */ 35 EXPORT_SYMBOL(__copy_tofrom_user); 36 EXPORT_SYMBOL(__strncpy_user); 37 38 #ifdef CONFIG_OPT_LIB_ASM 39 EXPORT_SYMBOL(memcpy); 40 EXPORT_SYMBOL(memmove); 41 #endif 42 43 #ifdef CONFIG_MMU 44 EXPORT_SYMBOL(empty_zero_page); 45 #endif 46 47 EXPORT_SYMBOL(mbc); 48 49 extern void __divsi3(void); 50 EXPORT_SYMBOL(__divsi3); 51 extern void __modsi3(void); 52 EXPORT_SYMBOL(__modsi3); 53 extern void __mulsi3(void); 54 EXPORT_SYMBOL(__mulsi3); 55 extern void __udivsi3(void); 56 EXPORT_SYMBOL(__udivsi3); 57 extern void __umodsi3(void); 58 EXPORT_SYMBOL(__umodsi3); 59