aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/kernel
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2011-03-28 02:53:37 -0400
committerGreg Ungerer <gerg@uclinux.org>2011-05-23 20:03:49 -0400
commit66d83ab32aec5d84d707d4d72717b9468ec33a96 (patch)
tree09a7748e0980fd99b6925a92ad5af53c87638a53 /arch/m68k/kernel
parentd10ed2f5383cc6e6b7649f03540b8cb1838d5f67 (diff)
m68k: remove duplicate memcpy() implementation
Merging the mmu and non-mmu directories we ended up with duplicate implementations of memcpy(). One is a little more optimized for the >= 68020 case, but that can easily be inserted into a single implementation of memcpy(). Clean up the exporting of this symbol too, otherwise we end up exporting it twice on a no-mmu build. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r--arch/m68k/kernel/m68k_ksyms_no.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/m68k/kernel/m68k_ksyms_no.c b/arch/m68k/kernel/m68k_ksyms_no.c
index 346bce63bbf3..10af0af4ddef 100644
--- a/arch/m68k/kernel/m68k_ksyms_no.c
+++ b/arch/m68k/kernel/m68k_ksyms_no.c
@@ -31,12 +31,6 @@ EXPORT_SYMBOL(kernel_thread);
31/* Networking helper routines. */ 31/* Networking helper routines. */
32EXPORT_SYMBOL(csum_partial_copy_nocheck); 32EXPORT_SYMBOL(csum_partial_copy_nocheck);
33 33
34/* The following are special because they're not called
35 explicitly (the C compiler generates them). Fortunately,
36 their interface isn't gonna change any time soon now, so
37 it's OK to leave it out of version control. */
38EXPORT_SYMBOL(memcpy);
39
40/* 34/*
41 * libgcc functions - functions that are used internally by the 35 * libgcc functions - functions that are used internally by the
42 * compiler... (prototypes are not correct though, but that 36 * compiler... (prototypes are not correct though, but that