diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2016-05-30 06:55:53 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-06 13:39:18 -0400 |
commit | 25bab53ab26efdb9e2024477f896be65b6e7191e (patch) | |
tree | d9e3bee50a8f4bd0f6fab15de8c67b2cc9877cff /include/linux | |
parent | 5c2728ff0fb6ade135cc15c4849acac7db1d93d0 (diff) | |
download | u-boot-25bab53ab26efdb9e2024477f896be65b6e7191e.tar.gz |
Remove unneeded remnants of bcopy().
Since bcopy() is no longer used, delete all remaining references to
it.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/string.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index c7047ba0bc..091ccab395 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -20,10 +20,6 @@ extern __kernel_size_t strspn(const char *,const char *); */ #include <asm/string.h> -#ifndef __HAVE_ARCH_BCOPY -char *bcopy(const char *src, char *dest, int count); -#endif - #ifndef __HAVE_ARCH_STRCPY extern char * strcpy(char *,const char *); #endif |