Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 2 | |
3 | #ifndef __ASM_SH_BYTEORDER_H_ | ||||
4 | #define __ASM_SH_BYTEORDER_H_ | ||||
5 | |||||
6 | #include <config.h> | ||||
7 | #include <asm/types.h> | ||||
8 | |||||
9 | #ifdef __LITTLE_ENDIAN__ | ||||
10 | #include <linux/byteorder/little_endian.h> | ||||
11 | #else | ||||
12 | #include <linux/byteorder/big_endian.h> | ||||
13 | #endif | ||||
14 | |||||
15 | #endif |