diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2023-06-09 07:36:37 +0300 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2023-06-13 05:48:57 +0300 |
commit | e7cb083891e42493d07e9e597f837ff622f892ea (patch) | |
tree | b1eab7234af1f5a47f7cd9c34660534ccba6904c /arch/xtensa/include | |
parent | f8b09d4524125163b9db47e831f398d7c6f8b22c (diff) | |
download | linux-e7cb083891e42493d07e9e597f837ff622f892ea.tar.xz |
xtensa: drop bcopy implementation
bcopy is not exported and there's no in-tree users of this function.
Drop it.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/include')
-rw-r--r-- | arch/xtensa/include/asm/string.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/xtensa/include/asm/string.h b/arch/xtensa/include/asm/string.h index 89b51a0c752f..ffce43513fa2 100644 --- a/arch/xtensa/include/asm/string.h +++ b/arch/xtensa/include/asm/string.h @@ -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__) /* |