All fields in radiotap header must be little endian. The driver does it correctly, but the structure definition must be annotated. Signed-off-by: Pavel Roskin <proski@xxxxxxx> --- drivers/net/wireless/mac80211/zd1211rw/zd_mac.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c b/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c index 5b9e04a..231ec2d 100644 --- a/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c +++ b/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c @@ -367,8 +367,8 @@ struct zd_rt_hdr { struct ieee80211_radiotap_header rt_hdr; u8 rt_flags; u8 rt_rate; - u16 rt_channel; - u16 rt_chbitmask; + __le16 rt_channel; + __le16 rt_chbitmask; } __attribute__((packed)); static void fill_rt_header(void *buffer, struct zd_mac *mac, - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html