2005-03-08 18:53:11 +00:00
|
|
|
#ifndef ETHERBOOT_BIG_BSWAP_H
|
|
|
|
#define ETHERBOOT_BIG_BSWAP_H
|
|
|
|
|
|
|
|
#define ntohl(x) (x)
|
|
|
|
#define htonl(x) (x)
|
|
|
|
#define ntohs(x) (x)
|
|
|
|
#define htons(x) (x)
|
2006-05-13 11:40:39 +00:00
|
|
|
#define cpu_to_le64(x) __bswap_64(x)
|
2005-03-08 18:53:11 +00:00
|
|
|
#define cpu_to_le32(x) __bswap_32(x)
|
|
|
|
#define cpu_to_le16(x) __bswap_16(x)
|
2006-05-13 11:40:39 +00:00
|
|
|
#define cpu_to_be64(x) (x)
|
2005-03-08 18:53:11 +00:00
|
|
|
#define cpu_to_be32(x) (x)
|
|
|
|
#define cpu_to_be16(x) (x)
|
2006-05-13 11:40:39 +00:00
|
|
|
#define le64_to_cpu(x) __bswap_64(x)
|
2005-03-08 18:53:11 +00:00
|
|
|
#define le32_to_cpu(x) __bswap_32(x)
|
|
|
|
#define le16_to_cpu(x) __bswap_16(x)
|
2006-05-13 11:40:39 +00:00
|
|
|
#define be64_to_cpu(x) (x)
|
2005-03-08 18:53:11 +00:00
|
|
|
#define be32_to_cpu(x) (x)
|
|
|
|
#define be16_to_cpu(x) (x)
|
|
|
|
|
|
|
|
#endif /* ETHERBOOT_BIG_BSWAP_H */
|