|
@@ -780,11 +780,12 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
|
|
|
WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
|
|
|
WLAN_EID_HT_CAPABILITY,
|
|
|
WLAN_EID_BSS_COEX_2040,
|
|
|
+ /* luckily this is almost always there */
|
|
|
WLAN_EID_EXT_CAPABILITY,
|
|
|
WLAN_EID_QOS_TRAFFIC_CAPA,
|
|
|
WLAN_EID_TIM_BCAST_REQ,
|
|
|
WLAN_EID_INTERWORKING,
|
|
|
- /* 60GHz doesn't happen right now */
|
|
|
+ /* 60 GHz (Multi-band, DMG, MMS) can't happen */
|
|
|
WLAN_EID_VHT_CAPABILITY,
|
|
|
WLAN_EID_OPMODE_NOTIF,
|
|
|
};
|
|
@@ -811,22 +812,16 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
|
|
|
/* if present, add any custom IEs that go before VHT */
|
|
|
if (assoc_data->ie_len) {
|
|
|
static const u8 before_vht[] = {
|
|
|
- WLAN_EID_SSID,
|
|
|
- WLAN_EID_SUPP_RATES,
|
|
|
- WLAN_EID_EXT_SUPP_RATES,
|
|
|
- WLAN_EID_PWR_CAPABILITY,
|
|
|
- WLAN_EID_SUPPORTED_CHANNELS,
|
|
|
- WLAN_EID_RSN,
|
|
|
- WLAN_EID_QOS_CAPA,
|
|
|
- WLAN_EID_RRM_ENABLED_CAPABILITIES,
|
|
|
- WLAN_EID_MOBILITY_DOMAIN,
|
|
|
- WLAN_EID_SUPPORTED_REGULATORY_CLASSES,
|
|
|
- WLAN_EID_HT_CAPABILITY,
|
|
|
+ /*
|
|
|
+ * no need to list the ones split off before HT
|
|
|
+ * or generated here
|
|
|
+ */
|
|
|
WLAN_EID_BSS_COEX_2040,
|
|
|
WLAN_EID_EXT_CAPABILITY,
|
|
|
WLAN_EID_QOS_TRAFFIC_CAPA,
|
|
|
WLAN_EID_TIM_BCAST_REQ,
|
|
|
WLAN_EID_INTERWORKING,
|
|
|
+ /* 60 GHz (Multi-band, DMG, MMS) can't happen */
|
|
|
};
|
|
|
|
|
|
/* RIC already taken above, so no need to handle here anymore */
|