From: Pavel Roskin <proski@xxxxxxx> 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> Signed-off-by: Ulrich Kunitz <kune@xxxxxxxxxxxxxx> Signed-off-by: Daniel Drake <dsd@xxxxxxxxxx> --- 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 b69688c..0d75ef2 100644 --- a/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c +++ b/drivers/net/wireless/mac80211/zd1211rw/zd_mac.c @@ -359,8 +359,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, -- 1.5.0.3 - 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