diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2007-07-20 06:42:46 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-07-20 16:29:51 -0400 |
commit | 2a0cc6885f34a8f1de195f718b9f51ece6923b80 (patch) | |
tree | 50ed8e4ae40bf799625540e8f1755e77ca6b704f /arch/arm/mm/proc-syms.c | |
parent | 367afaf83b0a8886ea566638a865701c54710af9 (diff) |
[ARM] 4502/1: nommu: Do not export the copy/clear user page functions
The __cpu_{clear|copy}_user_page functions are not defined for the
MMU-less case and therefore should not be exported.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/proc-syms.c')
-rw-r--r-- | arch/arm/mm/proc-syms.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mm/proc-syms.c b/arch/arm/mm/proc-syms.c index 9f396b4fa0b7..2b5ba396e3a6 100644 --- a/arch/arm/mm/proc-syms.c +++ b/arch/arm/mm/proc-syms.c | |||
@@ -31,12 +31,14 @@ EXPORT_SYMBOL(__cpuc_coherent_kern_range); | |||
31 | EXPORT_SYMBOL(cpu_cache); | 31 | EXPORT_SYMBOL(cpu_cache); |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | #ifdef CONFIG_MMU | ||
34 | #ifndef MULTI_USER | 35 | #ifndef MULTI_USER |
35 | EXPORT_SYMBOL(__cpu_clear_user_page); | 36 | EXPORT_SYMBOL(__cpu_clear_user_page); |
36 | EXPORT_SYMBOL(__cpu_copy_user_page); | 37 | EXPORT_SYMBOL(__cpu_copy_user_page); |
37 | #else | 38 | #else |
38 | EXPORT_SYMBOL(cpu_user); | 39 | EXPORT_SYMBOL(cpu_user); |
39 | #endif | 40 | #endif |
41 | #endif | ||
40 | 42 | ||
41 | /* | 43 | /* |
42 | * No module should need to touch the TLB (and currently | 44 | * No module should need to touch the TLB (and currently |