?am compiling a module on kamikaze 8.09 including code like:
**********************************************************
#if __BYTE_ORDER == __LITTLE_ENDIAN
u_int8_t res:7;
u_int8_t s:1;
#elif __BYTE_ORDER == __BIG_ENDIAN
u_int8_t s:1;
u_int8_t res:7;
#endif
u_int16_t check;
u_int32_t daddr;
************************************************************
I have include <asm/byteorder.h>, but error "__BYTE_ORDER" is not defined happened. I cannot solve it , anyone can help? Thanks!