MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / arm / mm / proc-syms.c
blobe4160002d64545aef893902f87ca14e7de44b5b4
1 /*
2 * linux/arch/arm/mm/proc-syms.c
4 * Copyright (C) 2000-2002 Russell King
5 * Modified by Hyok S. Choi, 2004
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/mm.h>
14 #include <asm/cacheflush.h>
15 #include <asm/proc-fns.h>
16 #include <asm/tlbflush.h>
17 #include <asm/page.h>
19 #ifndef MULTI_CPU
20 EXPORT_SYMBOL(cpu_dcache_clean_area);
21 #ifdef CONFIG_MMU
22 EXPORT_SYMBOL(cpu_set_pte);
23 #endif
24 #else
25 EXPORT_SYMBOL(processor);
26 #endif
28 #ifndef MULTI_CACHE
29 EXPORT_SYMBOL(__cpuc_flush_kern_all);
30 EXPORT_SYMBOL(__cpuc_flush_user_all);
31 EXPORT_SYMBOL(__cpuc_flush_user_range);
32 EXPORT_SYMBOL(__cpuc_coherent_kern_range);
33 #else
34 EXPORT_SYMBOL(cpu_cache);
35 #endif
37 #if 0 // mask by Victor Yu. 02-07-2007
38 #ifndef MULTI_USER
39 EXPORT_SYMBOL(__cpu_clear_user_page);
40 EXPORT_SYMBOL(__cpu_copy_user_page);
41 #else
42 EXPORT_SYMBOL(cpu_user);
43 #endif
44 #endif
47 * No module should need to touch the TLB (and currently
48 * no modules do. We export this for "loadkernel" support
49 * (booting a new kernel from within a running kernel.)
51 #ifdef MULTI_TLB
52 EXPORT_SYMBOL(cpu_tlb);
53 #endif