Greg Hartman | 76d05dc | 2016-11-23 15:51:27 -0800 | [diff] [blame] | 1 | #ifndef ETHERBOOT_LITTLE_BSWAP_H |
| 2 | #define ETHERBOOT_LITTLE_BSWAP_H |
| 3 | |
| 4 | FILE_LICENCE ( GPL2_OR_LATER ); |
| 5 | |
| 6 | #define ntohl(x) __bswap_32(x) |
| 7 | #define htonl(x) __bswap_32(x) |
| 8 | #define ntohs(x) __bswap_16(x) |
| 9 | #define htons(x) __bswap_16(x) |
| 10 | #define cpu_to_le64(x) (x) |
| 11 | #define cpu_to_le32(x) (x) |
| 12 | #define cpu_to_le16(x) (x) |
| 13 | #define cpu_to_be64(x) __bswap_64(x) |
| 14 | #define cpu_to_be32(x) __bswap_32(x) |
| 15 | #define cpu_to_be16(x) __bswap_16(x) |
| 16 | #define le64_to_cpu(x) (x) |
| 17 | #define le32_to_cpu(x) (x) |
| 18 | #define le16_to_cpu(x) (x) |
| 19 | #define be64_to_cpu(x) __bswap_64(x) |
| 20 | #define be32_to_cpu(x) __bswap_32(x) |
| 21 | #define be16_to_cpu(x) __bswap_16(x) |
| 22 | #define cpu_to_le64s(x) do {} while (0) |
| 23 | #define cpu_to_le32s(x) do {} while (0) |
| 24 | #define cpu_to_le16s(x) do {} while (0) |
| 25 | #define cpu_to_be64s(x) __bswap_64s(x) |
| 26 | #define cpu_to_be32s(x) __bswap_32s(x) |
| 27 | #define cpu_to_be16s(x) __bswap_16s(x) |
| 28 | #define le64_to_cpus(x) do {} while (0) |
| 29 | #define le32_to_cpus(x) do {} while (0) |
| 30 | #define le16_to_cpus(x) do {} while (0) |
| 31 | #define be64_to_cpus(x) __bswap_64s(x) |
| 32 | #define be32_to_cpus(x) __bswap_32s(x) |
| 33 | #define be16_to_cpus(x) __bswap_16s(x) |
| 34 | |
| 35 | #endif /* ETHERBOOT_LITTLE_BSWAP_H */ |