blob: 2403afe7f1c9b859c57e97c46d451150462747a3 [file] [log] [blame] [raw]
#ifndef _BYTEORDER_H_
#define _BYTEORDER_H_
#include "swab.h"
# define le64_to_cpu(x) swab64((x))
# define cpu_to_le64(x) swab64((x))
# define le32_to_cpu(x) swab32((x))
# define cpu_to_le32(x) swab32((x))
# define le16_to_cpu(x) swab16((x))
# define cpu_to_le16(x) swab16((x))
#endif /* _BYTEORDER_H_ */