mirror of
https://github.com/aircrack-ng/rtl8812au.git
synced 2024-11-23 05:44:40 +00:00
Use endian macros from kernel
This commit is contained in:
parent
8c6bb81767
commit
eeb8466919
@ -63,7 +63,7 @@ struct rsn_ie_hdr {
|
|||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
|
|
||||||
struct wme_ac_parameter {
|
struct wme_ac_parameter {
|
||||||
#if defined(CONFIG_LITTLE_ENDIAN)
|
#if defined(__LITTLE_ENDIAN)
|
||||||
/* byte 1 */
|
/* byte 1 */
|
||||||
u8 aifsn:4,
|
u8 aifsn:4,
|
||||||
acm:1,
|
acm:1,
|
||||||
@ -73,7 +73,7 @@ struct wme_ac_parameter {
|
|||||||
/* byte 2 */
|
/* byte 2 */
|
||||||
u8 eCWmin:4,
|
u8 eCWmin:4,
|
||||||
eCWmax:4;
|
eCWmax:4;
|
||||||
#elif defined(CONFIG_BIG_ENDIAN)
|
#else
|
||||||
/* byte 1 */
|
/* byte 1 */
|
||||||
u8 reserved:1,
|
u8 reserved:1,
|
||||||
aci:2,
|
aci:2,
|
||||||
@ -83,8 +83,6 @@ struct wme_ac_parameter {
|
|||||||
/* byte 2 */
|
/* byte 2 */
|
||||||
u8 eCWmax:4,
|
u8 eCWmax:4,
|
||||||
eCWmin:4;
|
eCWmin:4;
|
||||||
#else
|
|
||||||
#error "Please fix <endian.h>"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* bytes 3 & 4 */
|
/* bytes 3 & 4 */
|
||||||
|
Loading…
Reference in New Issue
Block a user