1 #ifndef __ASM_SH_BYTEORDER_H
2 #define __ASM_SH_BYTEORDER_H
5 * Copyright (C) 1999 Niibe Yutaka
9 #include <linux/compiler.h>
11 static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x)
13 __asm__("swap.b %0, %0\n\t"
21 static __inline__ __attribute_const__ __u16 ___arch__swab16(__u16 x)
23 __asm__("swap.b %0, %0"
29 static inline __u64 ___arch__swab64(__u64 val)
32 struct { __u32 a,b; } s;
36 w.s.b = ___arch__swab32(v.s.a);
37 w.s.a = ___arch__swab32(v.s.b);
41 #define __arch__swab64(x) ___arch__swab64(x)
42 #define __arch__swab32(x) ___arch__swab32(x)
43 #define __arch__swab16(x) ___arch__swab16(x)
45 #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
46 # define __BYTEORDER_HAS_U64__
47 # define __SWAB_64_THRU_32__
50 #ifdef __LITTLE_ENDIAN__
51 #include <linux/byteorder/little_endian.h>
53 #include <linux/byteorder/big_endian.h>
56 #endif /* __ASM_SH_BYTEORDER_H */