Char: mxser, 0 to NULL in pointer
[linux-2.6/mini2440.git] / include / asm-sparc64 / byteorder.h
blob3943022906fd4e59be65c8b451fb5d54179fb456
1 #ifndef _SPARC64_BYTEORDER_H
2 #define _SPARC64_BYTEORDER_H
4 #include <asm/types.h>
5 #include <asm/asi.h>
7 #ifdef __GNUC__
9 static inline __u16 ___arch__swab16p(const __u16 *addr)
11 __u16 ret;
13 __asm__ __volatile__ ("lduha [%1] %2, %0"
14 : "=r" (ret)
15 : "r" (addr), "i" (ASI_PL));
16 return ret;
19 static inline __u32 ___arch__swab32p(const __u32 *addr)
21 __u32 ret;
23 __asm__ __volatile__ ("lduwa [%1] %2, %0"
24 : "=r" (ret)
25 : "r" (addr), "i" (ASI_PL));
26 return ret;
29 static inline __u64 ___arch__swab64p(const __u64 *addr)
31 __u64 ret;
33 __asm__ __volatile__ ("ldxa [%1] %2, %0"
34 : "=r" (ret)
35 : "r" (addr), "i" (ASI_PL));
36 return ret;
39 #define __arch__swab16p(x) ___arch__swab16p(x)
40 #define __arch__swab32p(x) ___arch__swab32p(x)
41 #define __arch__swab64p(x) ___arch__swab64p(x)
43 #define __BYTEORDER_HAS_U64__
45 #endif /* __GNUC__ */
47 #include <linux/byteorder/big_endian.h>
49 #endif /* _SPARC64_BYTEORDER_H */