blob: 9f1d02c4c5cc6666deb5bc9c9a40ac0d1ff5da2e [file] [log] [blame]
Michal Simekf6b165c2009-03-27 14:25:17 +01001/*
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
Michal Simekd64af912013-02-01 13:10:35 +010010#include <linux/export.h>
Michal Simekf6b165c2009-03-27 14:25:17 +010011#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>
Michal Simekbd3b4922010-08-12 13:06:59 +020018#include <asm/cacheflush.h>
Michal Simekf6b165c2009-03-27 14:25:17 +010019#include <linux/io.h>
20#include <asm/page.h>
Michal Simek2fd7c762009-11-16 09:40:14 +010021#include <linux/ftrace.h>
Michal Simekf6b165c2009-03-27 14:25:17 +010022#include <linux/uaccess.h>
23
Michal Simek2fd7c762009-11-16 09:40:14 +010024#ifdef CONFIG_FUNCTION_TRACER
25extern void _mcount(void);
26EXPORT_SYMBOL(_mcount);
27#endif
Steven J. Magnanie1733d22010-04-27 13:00:35 -050028
29/*
30 * Assembly functions that may be used (directly or indirectly) by modules
31 */
32EXPORT_SYMBOL(__copy_tofrom_user);
Michal Simekee4bcdf2010-05-13 12:11:42 +020033EXPORT_SYMBOL(__strncpy_user);
Steven J. Magnanie1733d22010-04-27 13:00:35 -050034
35#ifdef CONFIG_OPT_LIB_ASM
36EXPORT_SYMBOL(memcpy);
37EXPORT_SYMBOL(memmove);
38#endif
Michal Simekbd3b4922010-08-12 13:06:59 +020039
40#ifdef CONFIG_MMU
41EXPORT_SYMBOL(empty_zero_page);
42#endif
43
44EXPORT_SYMBOL(mbc);
Michal Simekd50c3032011-02-24 15:36:49 +010045
46extern void __divsi3(void);
47EXPORT_SYMBOL(__divsi3);
48extern void __modsi3(void);
49EXPORT_SYMBOL(__modsi3);
50extern void __mulsi3(void);
51EXPORT_SYMBOL(__mulsi3);
52extern void __udivsi3(void);
53EXPORT_SYMBOL(__udivsi3);
54extern void __umodsi3(void);
55EXPORT_SYMBOL(__umodsi3);