unaligned.h 470 B

12345678910111213141516
  1. #ifndef __ASM_AVR32_UNALIGNED_H
  2. #define __ASM_AVR32_UNALIGNED_H
  3. /*
  4. * AVR32 can handle some unaligned accesses, depending on the
  5. * implementation. The AVR32 AP implementation can handle unaligned
  6. * words, but halfwords must be halfword-aligned, and doublewords must
  7. * be word-aligned.
  8. *
  9. * However, swapped word loads must be word-aligned so we can't
  10. * optimize word loads in general.
  11. */
  12. #include <asm-generic/unaligned.h>
  13. #endif /* __ASM_AVR32_UNALIGNED_H */