swab.h 988 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* MN10300 Byte-order primitive construction
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_SWAB_H
  12. #define _ASM_SWAB_H
  13. #include <linux/types.h>
  14. #ifdef __GNUC__
  15. static inline __attribute__((const))
  16. __u32 __arch_swab32(__u32 x)
  17. {
  18. __u32 ret;
  19. asm("swap %1,%0" : "=r" (ret) : "r" (x));
  20. return ret;
  21. }
  22. #define __arch_swab32 __arch_swab32
  23. static inline __attribute__((const))
  24. __u16 __arch_swab16(__u16 x)
  25. {
  26. __u16 ret;
  27. asm("swaph %1,%0" : "=r" (ret) : "r" (x));
  28. return ret;
  29. }
  30. #define __arch_swab32 __arch_swab32
  31. #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  32. # define __SWAB_64_THRU_32__
  33. #endif
  34. #endif /* __GNUC__ */
  35. #endif /* _ASM_SWAB_H */