aboutsummaryrefslogtreecommitdiff
path: root/include/asm-x86/byteorder_64.h
diff options
context:
space:
mode:
authorThomas Gleixner2007-10-23 22:37:23 +0200
committerThomas Gleixner2007-10-23 22:37:23 +0200
commitacbbbe9f5ab52da90a8edec02ec973e7f44dae81 (patch)
tree464bc5bc0358122f0d1135f6f54b58ca1a3cef84 /include/asm-x86/byteorder_64.h
parentd88203d1ab225f208c3f70cf21b025f427245c79 (diff)
x86: merge byteorder_32/64.h
Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/byteorder_64.h')
-rw-r--r--include/asm-x86/byteorder_64.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/asm-x86/byteorder_64.h b/include/asm-x86/byteorder_64.h
deleted file mode 100644
index 5e86c868c75e..000000000000
--- a/include/asm-x86/byteorder_64.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef _X86_64_BYTEORDER_H
-#define _X86_64_BYTEORDER_H
-
-#include <asm/types.h>
-#include <linux/compiler.h>
-
-#ifdef __GNUC__
-
-static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 x)
-{
- __asm__("bswapq %0" : "=r" (x) : "0" (x));
- return x;
-}
-
-static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x)
-{
- __asm__("bswapl %0" : "=r" (x) : "0" (x));
- return x;
-}
-
-/* Do not define swab16. Gcc is smart enough to recognize "C" version and
- convert it into rotation or exhange. */
-
-#define __arch__swab32(x) ___arch__swab32(x)
-#define __arch__swab64(x) ___arch__swab64(x)
-
-#endif /* __GNUC__ */
-
-#define __BYTEORDER_HAS_U64__
-
-#include <linux/byteorder/little_endian.h>
-
-#endif /* _X86_64_BYTEORDER_H */