diff options
author | wdenk <wdenk> | 2002-11-19 23:01:07 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2002-11-19 23:01:07 +0000 |
commit | b2184c314de0af9788ce505b413030d2114cfa4a (patch) | |
tree | fd167faf0174a2e7ec1bb775b78952478fab391a /lib_generic | |
parent | 0ae1175bb2ee24cce54df634761993b363ce888f (diff) |
* Patch by Daniel Engström, 18 Nov 2002:
Fixes for x86 port (mostly strings issues)
* Patch by Ken Chou, 18 Nov 2002:
Fix for natsemi NIC cards (DP83815)
* Patch by Pierre Aubert, 19 Nov 2002:
fix a bug for the MII configuration, and some warnings
Diffstat (limited to 'lib_generic')
-rw-r--r-- | lib_generic/string.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lib_generic/string.c b/lib_generic/string.c index 1e1e2e33fc3..f4d245725cf 100644 --- a/lib_generic/string.c +++ b/lib_generic/string.c @@ -20,30 +20,6 @@ #include <linux/ctype.h> #include <malloc.h> -#ifdef CONFIG_ARM -#undef __HAVE_ARCH_MEMCMP -#undef __HAVE_ARCH_MEMCPY -#undef __HAVE_ARCH_MEMMOVE -#undef __HAVE_ARCH_MEMSET -#undef __HAVE_ARCH_BCOPY -#undef __HAVE_ARCH_STRCAT -#undef __HAVE_ARCH_STRCHR -#undef __HAVE_ARCH_STRCMP -#undef __HAVE_ARCH_STRCPY -#undef __HAVE_ARCH_STRLEN -#undef __HAVE_ARCH_STRNCPY -#else -#define __HAVE_ARCH_MEMCMP -#define __HAVE_ARCH_MEMCPY -#define __HAVE_ARCH_MEMMOVE -#define __HAVE_ARCH_MEMSET -#define __HAVE_ARCH_BCOPY -#define __HAVE_ARCH_STRCAT -#define __HAVE_ARCH_STRCMP -#define __HAVE_ARCH_STRCPY -#define __HAVE_ARCH_STRLEN -#define __HAVE_ARCH_STRNCPY -#endif #ifndef __HAVE_ARCH_STRNICMP /** |