|
@@ -398,6 +398,9 @@ void lim_extract_ap_capability(struct mac_context *mac_ctx, uint8_t *p_ie,
|
|
|
else if (center_freq_diff > 16)
|
|
|
ap_bcon_ch_width =
|
|
|
WNI_CFG_VHT_CHANNEL_WIDTH_80_PLUS_80MHZ;
|
|
|
+ else
|
|
|
+ ap_bcon_ch_width =
|
|
|
+ WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ;
|
|
|
}
|
|
|
|
|
|
fw_vht_ch_wd = wma_get_vht_ch_width();
|
|
@@ -466,17 +469,14 @@ void lim_extract_ap_capability(struct mac_context *mac_ctx, uint8_t *p_ie,
|
|
|
*/
|
|
|
vht_ch_wd = WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ;
|
|
|
session->ch_center_freq_seg1 = 0;
|
|
|
+ session->ch_center_freq_seg0 =
|
|
|
+ lim_get_80Mhz_center_channel(channel);
|
|
|
}
|
|
|
} else if (vht_ch_wd == WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ) {
|
|
|
/* DUT or AP supports only 80MHz */
|
|
|
- if (ap_bcon_ch_width ==
|
|
|
- WNI_CFG_VHT_CHANNEL_WIDTH_160MHZ &&
|
|
|
- !new_ch_width_dfn)
|
|
|
- /* AP is in 160MHz mode */
|
|
|
- session->ch_center_freq_seg0 =
|
|
|
- lim_get_80Mhz_center_channel(channel);
|
|
|
- else
|
|
|
- session->ch_center_freq_seg1 = 0;
|
|
|
+ session->ch_center_freq_seg0 =
|
|
|
+ lim_get_80Mhz_center_channel(channel);
|
|
|
+ session->ch_center_freq_seg1 = 0;
|
|
|
}
|
|
|
session->ch_width = vht_ch_wd + 1;
|
|
|
}
|