1 /* 2 * SPDX-License-Identifier: GPL-2.0+ 3 */ 4 5 #ifndef __ASM_SH_BYTEORDER_H_ 6 #define __ASM_SH_BYTEORDER_H_ 7 8 #include <config.h> 9 #include <asm/types.h> 10 11 #ifdef __LITTLE_ENDIAN__ 12 #include <linux/byteorder/little_endian.h> 13 #else 14 #include <linux/byteorder/big_endian.h> 15 #endif 16 17 #endif 18