arch/unicore32/kernel/ksyms.c: remove 2 export symbols to avoid compiling failure
[deliverable/linux.git] / arch / unicore32 / kernel / ksyms.c
CommitLineData
87c1a3fb
G
1/*
2 * linux/arch/unicore32/kernel/ksyms.c
3 *
4 * Code specific to PKUnity SoC and UniCore ISA
5 *
6 * Copyright (C) 2001-2010 GUAN Xue-tao
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12#include <linux/module.h>
13#include <linux/sched.h>
14#include <linux/string.h>
15#include <linux/cryptohash.h>
16#include <linux/delay.h>
17#include <linux/in6.h>
18#include <linux/syscalls.h>
19#include <linux/uaccess.h>
20#include <linux/io.h>
21
22#include <asm/checksum.h>
87c1a3fb
G
23
24#include "ksyms.h"
25
e13b91c1
GX
26EXPORT_SYMBOL(find_next_zero_bit);
27EXPORT_SYMBOL(find_next_bit);
87c1a3fb 28
87c1a3fb
G
29 /* platform dependent support */
30EXPORT_SYMBOL(__udelay);
31EXPORT_SYMBOL(__const_udelay);
32
87c1a3fb
G
33 /* string / mem functions */
34EXPORT_SYMBOL(strchr);
35EXPORT_SYMBOL(strrchr);
36EXPORT_SYMBOL(memset);
37EXPORT_SYMBOL(memcpy);
38EXPORT_SYMBOL(memmove);
39EXPORT_SYMBOL(memchr);
40
41 /* user mem (segment) */
42EXPORT_SYMBOL(__strnlen_user);
43EXPORT_SYMBOL(__strncpy_from_user);
44
45EXPORT_SYMBOL(copy_page);
46
47EXPORT_SYMBOL(__copy_from_user);
48EXPORT_SYMBOL(__copy_to_user);
49EXPORT_SYMBOL(__clear_user);
50
87c1a3fb
G
51EXPORT_SYMBOL(__ashldi3);
52EXPORT_SYMBOL(__ashrdi3);
53EXPORT_SYMBOL(__divsi3);
54EXPORT_SYMBOL(__lshrdi3);
55EXPORT_SYMBOL(__modsi3);
56EXPORT_SYMBOL(__muldi3);
57EXPORT_SYMBOL(__ucmpdi2);
58EXPORT_SYMBOL(__udivsi3);
59EXPORT_SYMBOL(__umodsi3);
60EXPORT_SYMBOL(__bswapsi2);
61
This page took 0.203736 seconds and 5 git commands to generate.