b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #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 |