blob: 5cb034174005a4be062b188cb6f358a0c1f095a9 [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
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>
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>
21#include <asm/system.h>
Michal Simek2fd7c762009-11-16 09:40:14 +010022#include <linux/ftrace.h>
Michal Simekf6b165c2009-03-27 14:25:17 +010023#include <linux/uaccess.h>
24
Arnd Bergmann5af7fa62009-05-01 21:48:15 +000025extern char *_ebss;
26EXPORT_SYMBOL_GPL(_ebss);
Michal Simek2fd7c762009-11-16 09:40:14 +010027#ifdef CONFIG_FUNCTION_TRACER
28extern void _mcount(void);
29EXPORT_SYMBOL(_mcount);
30#endif
Steven J. Magnanie1733d22010-04-27 13:00:35 -050031
32/*
33 * Assembly functions that may be used (directly or indirectly) by modules
34 */
35EXPORT_SYMBOL(__copy_tofrom_user);
Michal Simekee4bcdf2010-05-13 12:11:42 +020036EXPORT_SYMBOL(__strncpy_user);
Steven J. Magnanie1733d22010-04-27 13:00:35 -050037
38#ifdef CONFIG_OPT_LIB_ASM
39EXPORT_SYMBOL(memcpy);
40EXPORT_SYMBOL(memmove);
41#endif
Michal Simekbd3b4922010-08-12 13:06:59 +020042
43#ifdef CONFIG_MMU
44EXPORT_SYMBOL(empty_zero_page);
45#endif
46
47EXPORT_SYMBOL(mbc);