[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>

authored by Catalin Marinas and committed by Russell King 2a0cc688 367afaf8

+2
+2
arch/arm/mm/proc-syms.c
··· 31 EXPORT_SYMBOL(cpu_cache); 32 #endif 33 34 #ifndef MULTI_USER 35 EXPORT_SYMBOL(__cpu_clear_user_page); 36 EXPORT_SYMBOL(__cpu_copy_user_page); 37 #else 38 EXPORT_SYMBOL(cpu_user); 39 #endif 40 41 /*
··· 31 EXPORT_SYMBOL(cpu_cache); 32 #endif 33 34 + #ifdef CONFIG_MMU 35 #ifndef MULTI_USER 36 EXPORT_SYMBOL(__cpu_clear_user_page); 37 EXPORT_SYMBOL(__cpu_copy_user_page); 38 #else 39 EXPORT_SYMBOL(cpu_user); 40 + #endif 41 #endif 42 43 /*