aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mm/proc-syms.c
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2013-01-22 06:00:54 -0500
committerWill Deacon <will.deacon@arm.com>2013-03-26 05:55:34 -0400
commitd455bac223d6f9858b29a29272756243ec3d3904 (patch)
tree93a1abb2c9b3e23a5389dcc1ccd9710bd91eb095 /arch/arm/mm/proc-syms.c
parent794fe85da484353dedcb5dc6da14d923d0645fc3 (diff)
ARM: modules: don't export cpu_set_pte_ext when !MMU
cpu_set_pte_ext is only guaranteed to be defined when CONFIG_MMU, so don't export it to modules otherwise. Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/mm/proc-syms.c')
-rw-r--r--arch/arm/mm/proc-syms.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mm/proc-syms.c b/arch/arm/mm/proc-syms.c
index 3e6210b4d6d4..054b491ff764 100644
--- a/arch/arm/mm/proc-syms.c
+++ b/arch/arm/mm/proc-syms.c
@@ -17,7 +17,9 @@
17 17
18#ifndef MULTI_CPU 18#ifndef MULTI_CPU
19EXPORT_SYMBOL(cpu_dcache_clean_area); 19EXPORT_SYMBOL(cpu_dcache_clean_area);
20#ifdef CONFIG_MMU
20EXPORT_SYMBOL(cpu_set_pte_ext); 21EXPORT_SYMBOL(cpu_set_pte_ext);
22#endif
21#else 23#else
22EXPORT_SYMBOL(processor); 24EXPORT_SYMBOL(processor);
23#endif 25#endif