Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / 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