blob: 74fbfb3eb64a17d7257d247d7cba29ba96c9e3c5 [file] [log] [blame]
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09001/*
Wolfgang Denk1a459662013-07-08 09:37:19 +02002 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09003 */
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