blob: 8e7d779d7dd015fca5310f0c251a99f3d26df026 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#ifndef __ASM_BYTEORDER_H
2#define __ASM_BYTEORDER_H
3
4#include <endian.h>
5
6#if __BYTE_ORDER == __LITTLE_ENDIAN
7#include <linux/byteorder/little_endian.h>
8#else
9#include <linux/byteorder/big_endian.h>
10#endif
11
12#endif