mwifiex: remove struct mwifiex_802_11_fixed_ies
struct mwifiex_802_11_fixed_ies is not necessary. struct mwifiex_event_wep_icv_err is not used any more. Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
2b06bdbe07
commit
7327890a1f
|
@ -343,20 +343,6 @@ enum ENH_PS_MODES {
|
|||
#define EVENT_GET_BSS_TYPE(event_cause) \
|
||||
(((event_cause) >> 24) & 0x00ff)
|
||||
|
||||
struct mwifiex_event_wep_icv_err {
|
||||
u16 reason_code;
|
||||
u8 src_mac_addr[ETH_ALEN];
|
||||
u8 wep_key_index;
|
||||
u8 wep_key_length;
|
||||
u8 key[WLAN_KEY_LEN_WEP104];
|
||||
};
|
||||
|
||||
struct mwifiex_802_11_fixed_ies {
|
||||
u8 time_stamp[8];
|
||||
__le16 beacon_interval;
|
||||
__le16 capabilities;
|
||||
};
|
||||
|
||||
struct mwifiex_ie_types_header {
|
||||
__le16 type;
|
||||
__le16 len;
|
||||
|
|
|
@ -1210,7 +1210,8 @@ mwifiex_interpret_bss_desc_with_ie(struct mwifiex_adapter *adapter,
|
|||
struct ieee_types_ds_param_set *ds_param_set;
|
||||
struct ieee_types_cf_param_set *cf_param_set;
|
||||
struct ieee_types_ibss_param_set *ibss_param_set;
|
||||
struct mwifiex_802_11_fixed_ies fixed_ie;
|
||||
__le16 beacon_interval;
|
||||
__le16 capabilities;
|
||||
u8 *current_ptr;
|
||||
u8 *rate;
|
||||
u8 element_len;
|
||||
|
@ -1283,22 +1284,21 @@ mwifiex_interpret_bss_desc_with_ie(struct mwifiex_adapter *adapter,
|
|||
bss_entry->beacon_buf_size = bytes_left_for_current_beacon;
|
||||
|
||||
/* Time stamp is 8 bytes long */
|
||||
memcpy(fixed_ie.time_stamp, current_ptr, 8);
|
||||
memcpy(bss_entry->time_stamp, current_ptr, 8);
|
||||
current_ptr += 8;
|
||||
bytes_left_for_current_beacon -= 8;
|
||||
|
||||
/* Beacon interval is 2 bytes long */
|
||||
memcpy(&fixed_ie.beacon_interval, current_ptr, 2);
|
||||
bss_entry->beacon_period = le16_to_cpu(fixed_ie.beacon_interval);
|
||||
memcpy(&beacon_interval, current_ptr, 2);
|
||||
bss_entry->beacon_period = le16_to_cpu(beacon_interval);
|
||||
current_ptr += 2;
|
||||
bytes_left_for_current_beacon -= 2;
|
||||
|
||||
/* Capability information is 2 bytes long */
|
||||
memcpy(&fixed_ie.capabilities, current_ptr, 2);
|
||||
dev_dbg(adapter->dev, "info: InterpretIE: fixed_ie.capabilities=0x%X\n",
|
||||
fixed_ie.capabilities);
|
||||
bss_entry->cap_info_bitmap = le16_to_cpu(fixed_ie.capabilities);
|
||||
memcpy(&capabilities, current_ptr, 2);
|
||||
dev_dbg(adapter->dev, "info: InterpretIE: capabilities=0x%X\n",
|
||||
capabilities);
|
||||
bss_entry->cap_info_bitmap = le16_to_cpu(capabilities);
|
||||
current_ptr += 2;
|
||||
bytes_left_for_current_beacon -= 2;
|
||||
|
||||
|
|
Loading…
Reference in New Issue