unaligned.h 320 B

12345678910111213
  1. #ifndef _ASM_SH_UNALIGNED_H
  2. #define _ASM_SH_UNALIGNED_H
  3. #ifdef CONFIG_CPU_SH4A
  4. /* SH-4A can handle unaligned loads in a relatively neutered fashion. */
  5. #include <asm/unaligned-sh4a.h>
  6. #else
  7. /* Otherwise, SH can't handle unaligned accesses. */
  8. #include <asm-generic/unaligned.h>
  9. #endif
  10. #endif /* _ASM_SH_UNALIGNED_H */