unaligned.h 765 B

1234567891011121314151617181920212223242526
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
  7. */
  8. #ifndef _ASM_MIPS_UNALIGNED_H
  9. #define _ASM_MIPS_UNALIGNED_H
  10. #include <compiler.h>
  11. #if defined(__MIPSEB__)
  12. #define get_unaligned __get_unaligned_be
  13. #define put_unaligned __put_unaligned_be
  14. #elif defined(__MIPSEL__)
  15. #define get_unaligned __get_unaligned_le
  16. #define put_unaligned __put_unaligned_le
  17. #else
  18. #error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
  19. #endif
  20. #include <linux/unaligned/le_byteshift.h>
  21. #include <linux/unaligned/be_byteshift.h>
  22. #include <linux/unaligned/generic.h>
  23. #endif /* _ASM_MIPS_UNALIGNED_H */