aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/string.h
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-06-27 12:22:14 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-06-27 12:22:14 +0000
commitf2744bf1cb71cc7df4dcdbbef814d0c86a0bf0b9 (patch)
tree5697ad7958ca4f4b2741ba3cdf6cd67653dbe802 /xen/include/asm-x86/string.h
parentf6f1621f7e47eefbfe675dfc2fa2916ffcd138e2 (diff)
downloadxen-f2744bf1cb71cc7df4dcdbbef814d0c86a0bf0b9.tar.gz
xen-f2744bf1cb71cc7df4dcdbbef814d0c86a0bf0b9.tar.bz2
xen-f2744bf1cb71cc7df4dcdbbef814d0c86a0bf0b9.zip
bitkeeper revision 1.1020 (40debbf6f8HvBW3MU_9c6ljHeGaKeQ)
cleanups.
Diffstat (limited to 'xen/include/asm-x86/string.h')
-rw-r--r--xen/include/asm-x86/string.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/xen/include/asm-x86/string.h b/xen/include/asm-x86/string.h
index 3944789251..27fbb4d035 100644
--- a/xen/include/asm-x86/string.h
+++ b/xen/include/asm-x86/string.h
@@ -1,20 +1,7 @@
#ifndef _I386_STRING_H_
#define _I386_STRING_H_
-#ifdef __KERNEL__
#include <xen/config.h>
-/*
- * On a 486 or Pentium, we are better off not using the
- * byte string operations. But on a 386 or a PPro the
- * byte string ops are faster than doing it by hand
- * (MUCH faster on a Pentium).
- *
- * Also, the byte strings actually work correctly. Forget
- * the i486 routines for now as they may be broken..
- */
-#if FIXED_486_STRING && defined(CONFIG_X86_USE_STRING_486)
-#include <asm/string-486.h>
-#else
/*
* This string-include defines all string functions as inline
@@ -495,7 +482,4 @@ static inline void * memscan(void * addr, int c, size_t size)
return addr;
}
-#endif /* CONFIG_X86_USE_STRING_486 */
-#endif /* __KERNEL__ */
-
#endif