]> git.sur5r.net Git - u-boot/blob - arch/sh/include/asm/byteorder.h
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / arch / sh / include / asm / byteorder.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
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