blob: 74fbfb3eb64a17d7257d247d7cba29ba96c9e3c5 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
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