summaryrefslogtreecommitdiffstats
path: root/include/asm-arm/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-arm/string.h')
-rw-r--r--include/asm-arm/string.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/asm-arm/string.h b/include/asm-arm/string.h
index c3ea582cab..d835a17893 100644
--- a/include/asm-arm/string.h
+++ b/include/asm-arm/string.h
@@ -25,23 +25,6 @@ extern void * memchr(const void *, int, __kernel_size_t);
#undef __HAVE_ARCH_MEMSET
extern void * memset(void *, int, __kernel_size_t);
-#if 0
-extern void __memzero(void *ptr, __kernel_size_t n);
-
-#define memset(p,v,n) \
- ({ \
- if ((n) != 0) { \
- if (__builtin_constant_p((v)) && (v) == 0) \
- __memzero((p),(n)); \
- else \
- memset((p),(v),(n)); \
- } \
- (p); \
- })
-
-#define memzero(p,n) ({ if ((n) != 0) __memzero((p),(n)); (p); })
-#else
extern void memzero(void *ptr, __kernel_size_t n);
-#endif
#endif