microblaze: remove cacheable_memcpy
authorArnd Bergmann <arnd@arndb.de>
Sun, 10 May 2009 14:32:11 +0000 (14:32 +0000)
committerMichal Simek <monstr@monstr.eu>
Thu, 21 May 2009 13:56:05 +0000 (15:56 +0200)
This function is neither declared nor used anywhere
outside of ppc32, so remove it from microblaze.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/lib/memcpy.c

index 5880119c448721e9064b3a315cba6810907b6d31..6a907c58a4bc075ae84aa91797d34ad7565d9d54 100644 (file)
@@ -154,8 +154,3 @@ void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c)
 }
 EXPORT_SYMBOL(memcpy);
 #endif /* __HAVE_ARCH_MEMCPY */
-
-void *cacheable_memcpy(void *d, const void *s, __kernel_size_t c)
-{
-       return memcpy(d, s, c);
-}