root/arch/sh/include/asm/unaligned.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


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

/* [<][>][^][v][top][bottom][index][help] */