
On Mon, 23 May 2016, Michal Simek wrote:
Hi,
2016-05-22 20:54 GMT+02:00 Robert P. J. Day rpjday@crashcourse.ca:
just noticed that this is all that's left of "bcopy": $ grep -rw bcopy * arch/powerpc/lib/ppcstring.S: .globl bcopy arch/powerpc/lib/ppcstring.S:bcopy: arch/microblaze/include/asm/string.h:extern void bcopy (const char *, char *, int); include/linux/string.h:char *bcopy(const char *src, char *dest, int count); lib/string.c: * bcopy - Copy one area of memory to another lib/string.c: * memcpy() is the standard, bcopy() is a legacy BSD function. lib/string.c:char * bcopy(const char * src, char * dest, int count) $
No problem to remove it. Please send the patch.
done, also noticed that that entire microblaze string.h file could possibly have been tossed:
#ifndef __MICROBLAZE_STRING_H__ #define __MICROBLAZE_STRING_H__
#if 0 #define __HAVE_ARCH_BCOPY #define __HAVE_ARCH_MEMCPY #define __HAVE_ARCH_MEMSET #define __HAVE_ARCH_MEMMOVE
extern void *memcpy (void *, const void *, __kernel_size_t); extern void bcopy (const char *, char *, int); extern void *memset (void *, int, __kernel_size_t); extern void *memmove (void *, const void *, __kernel_size_t); #endif
#endif /* __MICROBLAZE_STRING_H__ */
but i'll leave that in your capable hands, feel free to hack my patch to do that.
rday