]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - arch/x86/include/asm/string.h
x86: Add an accelerated memmove() function
[people/ms/u-boot.git] / arch / x86 / include / asm / string.h
index 3aa6c1131b21cd3d192a454414c8c9ccb61dd75f..38afd236843a6cc95a442ed4c690211b1d59fab7 100644 (file)
@@ -14,10 +14,10 @@ extern char * strrchr(const char * s, int c);
 #undef __HAVE_ARCH_STRCHR
 extern char * strchr(const char * s, int c);
 
-#undef __HAVE_ARCH_MEMCPY
+#define __HAVE_ARCH_MEMCPY
 extern void * memcpy(void *, const void *, __kernel_size_t);
 
-#undef __HAVE_ARCH_MEMMOVE
+#define __HAVE_ARCH_MEMMOVE
 extern void * memmove(void *, const void *, __kernel_size_t);
 
 #undef __HAVE_ARCH_MEMCHR