sparc: revive __HAVE_ARCH_STRLEN for 32bit sparc
Prior to commit70a6fcf328
("[sparc] unify 32bit and 64bit string.h"), __HAVE_ARCH_STRLEN was defined in both of string_32.h and string_64.h It did not unify __HAVE_ARCH_STRLEN, but deleted it from string_32.h This issue was reported by the kbuild test robot in the trial of forcible linking of $(lib-y) to vmlinux. Fixes:70a6fcf328
("[sparc] unify 32bit and 64bit string.h") Reported-by: kbuild test robot <lkp@intel.com> Suggested-by: Nick Desaulniers <ndesaulniers@google.com> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Acked-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
aefd80307a
commit
51e4064179
|
@ -37,6 +37,10 @@ void *memmove(void *, const void *, __kernel_size_t);
|
||||||
#define __HAVE_ARCH_MEMCMP
|
#define __HAVE_ARCH_MEMCMP
|
||||||
int memcmp(const void *,const void *,__kernel_size_t);
|
int memcmp(const void *,const void *,__kernel_size_t);
|
||||||
|
|
||||||
|
/* Now the str*() stuff... */
|
||||||
|
#define __HAVE_ARCH_STRLEN
|
||||||
|
__kernel_size_t strlen(const char *);
|
||||||
|
|
||||||
#define __HAVE_ARCH_STRNCMP
|
#define __HAVE_ARCH_STRNCMP
|
||||||
int strncmp(const char *, const char *, __kernel_size_t);
|
int strncmp(const char *, const char *, __kernel_size_t);
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,4 @@
|
||||||
|
|
||||||
#include <asm/asi.h>
|
#include <asm/asi.h>
|
||||||
|
|
||||||
/* Now the str*() stuff... */
|
|
||||||
#define __HAVE_ARCH_STRLEN
|
|
||||||
__kernel_size_t strlen(const char *);
|
|
||||||
|
|
||||||
#endif /* !(__SPARC64_STRING_H__) */
|
#endif /* !(__SPARC64_STRING_H__) */
|
||||||
|
|
Loading…
Reference in New Issue