diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_80211.h')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_80211.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/wireless/hostap/hostap_80211.h b/drivers/net/wireless/hostap/hostap_80211.h index 7f9d8d976aa..ed98ce7c8f6 100644 --- a/drivers/net/wireless/hostap/hostap_80211.h +++ b/drivers/net/wireless/hostap/hostap_80211.h @@ -19,35 +19,35 @@ struct hostap_ieee80211_mgmt {  			__le16 status_code;  			/* possibly followed by Challenge text */  			u8 variable[0]; -		} __attribute__ ((packed)) auth; +		} __packed auth;  		struct {  			__le16 reason_code; -		} __attribute__ ((packed)) deauth; +		} __packed deauth;  		struct {  			__le16 capab_info;  			__le16 listen_interval;  			/* followed by SSID and Supported rates */  			u8 variable[0]; -		} __attribute__ ((packed)) assoc_req; +		} __packed assoc_req;  		struct {  			__le16 capab_info;  			__le16 status_code;  			__le16 aid;  			/* followed by Supported rates */  			u8 variable[0]; -		} __attribute__ ((packed)) assoc_resp, reassoc_resp; +		} __packed assoc_resp, reassoc_resp;  		struct {  			__le16 capab_info;  			__le16 listen_interval;  			u8 current_ap[6];  			/* followed by SSID and Supported rates */  			u8 variable[0]; -		} __attribute__ ((packed)) reassoc_req; +		} __packed reassoc_req;  		struct {  			__le16 reason_code; -		} __attribute__ ((packed)) disassoc; +		} __packed disassoc;  		struct { -		} __attribute__ ((packed)) probe_req; +		} __packed probe_req;  		struct {  			u8 timestamp[8];  			__le16 beacon_int; @@ -55,9 +55,9 @@ struct hostap_ieee80211_mgmt {  			/* followed by some of SSID, Supported rates,  			 * FH Params, DS Params, CF Params, IBSS Params, TIM */  			u8 variable[0]; -		} __attribute__ ((packed)) beacon, probe_resp; +		} __packed beacon, probe_resp;  	} u; -} __attribute__ ((packed)); +} __packed;  #define IEEE80211_MGMT_HDR_LEN 24  |