diff options
author | Ron Rindjunsky <ron.rindjunsky@intel.com> | 2008-01-21 05:39:11 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:10:45 -0500 |
commit | a8b47ea3c583645977a916ab3e2d323c7504aa7b (patch) | |
tree | aa9f61fc6d806cb8b5689df559e362f95b5485e7 /include/linux/ieee80211.h | |
parent | 95b66bad55b846e02e5b5c8b32ac4a659c28149b (diff) |
mac80211: fixing ieee80211_bar types
This patch changes ieee80211_bar control and start_seq_num to
match the proper bitwise attribute expected from ieee 802.11 frame
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/linux/ieee80211.h')
-rw-r--r-- | include/linux/ieee80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index 4d5a4c9dcba7..5de6d911cdf7 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -237,8 +237,8 @@ struct ieee80211_bar { | |||
237 | __le16 duration; | 237 | __le16 duration; |
238 | __u8 ra[6]; | 238 | __u8 ra[6]; |
239 | __u8 ta[6]; | 239 | __u8 ta[6]; |
240 | __u16 control; | 240 | __le16 control; |
241 | __u16 start_seq_num; | 241 | __le16 start_seq_num; |
242 | } __attribute__((packed)); | 242 | } __attribute__((packed)); |
243 | 243 | ||
244 | /** | 244 | /** |