WAN: HDLC: Detach protocol before unregistering device
[linux/fpc-iii.git] / arch / m68k / include / uapi / asm / swab.h
blobb7b37a40defc82d167a354fd9a8a63aeb4e4cf48
1 #ifndef _M68K_SWAB_H
2 #define _M68K_SWAB_H
4 #include <linux/types.h>
5 #include <linux/compiler.h>
7 #define __SWAB_64_THRU_32__
9 #if defined (__mcfisaaplus__) || defined (__mcfisac__)
10 static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
12 __asm__("byterev %0" : "=d" (val) : "0" (val));
13 return val;
16 #define __arch_swab32 __arch_swab32
17 #elif !defined(__mcoldfire__)
19 static inline __attribute_const__ __u32 __arch_swab32(__u32 val)
21 __asm__("rolw #8,%0; swap %0; rolw #8,%0" : "=d" (val) : "0" (val));
22 return val;
24 #define __arch_swab32 __arch_swab32
25 #endif
27 #endif /* _M68K_SWAB_H */