Loading arch/xtensa/include/asm/string.h +0 −3 Original line number Diff line number Diff line Loading @@ -118,9 +118,6 @@ extern void *__memcpy(void *__to, __const__ void *__from, size_t __n); extern void *memmove(void *__dest, __const__ void *__src, size_t __n); extern void *__memmove(void *__dest, __const__ void *__src, size_t __n); /* Don't build bcopy at all ... */ #define __HAVE_ARCH_BCOPY #if defined(CONFIG_KASAN) && !defined(__SANITIZE_ADDRESS__) /* Loading arch/xtensa/lib/memcopy.S +0 −15 Original line number Diff line number Diff line Loading @@ -274,21 +274,6 @@ WEAK(memcpy) ENDPROC(__memcpy) /* * void bcopy(const void *src, void *dest, size_t n); */ ENTRY(bcopy) abi_entry_default # a2=src, a3=dst, a4=len mov a5, a3 mov a3, a2 mov a2, a5 j .Lmovecommon # go to common code for memmove+bcopy ENDPROC(bcopy) /* * void *memmove(void *dst, const void *src, size_t len); * Loading Loading
arch/xtensa/include/asm/string.h +0 −3 Original line number Diff line number Diff line Loading @@ -118,9 +118,6 @@ extern void *__memcpy(void *__to, __const__ void *__from, size_t __n); extern void *memmove(void *__dest, __const__ void *__src, size_t __n); extern void *__memmove(void *__dest, __const__ void *__src, size_t __n); /* Don't build bcopy at all ... */ #define __HAVE_ARCH_BCOPY #if defined(CONFIG_KASAN) && !defined(__SANITIZE_ADDRESS__) /* Loading
arch/xtensa/lib/memcopy.S +0 −15 Original line number Diff line number Diff line Loading @@ -274,21 +274,6 @@ WEAK(memcpy) ENDPROC(__memcpy) /* * void bcopy(const void *src, void *dest, size_t n); */ ENTRY(bcopy) abi_entry_default # a2=src, a3=dst, a4=len mov a5, a3 mov a3, a2 mov a2, a5 j .Lmovecommon # go to common code for memmove+bcopy ENDPROC(bcopy) /* * void *memmove(void *dst, const void *src, size_t len); * Loading