|
@@ -2207,8 +2207,9 @@ QDF_STATUS tdls_process_antenna_switch(struct tdls_antenna_switch_request *req)
|
|
|
int ant_switch_state = 0;
|
|
|
uint32_t vdev_id;
|
|
|
enum QDF_OPMODE opmode;
|
|
|
- uint8_t channel;
|
|
|
+ qdf_freq_t freq;
|
|
|
struct tdls_osif_indication ind;
|
|
|
+ enum policy_mgr_con_mode mode;
|
|
|
|
|
|
if (!req) {
|
|
|
tdls_err("null req");
|
|
@@ -2242,14 +2243,13 @@ QDF_STATUS tdls_process_antenna_switch(struct tdls_antenna_switch_request *req)
|
|
|
|
|
|
vdev_id = wlan_vdev_get_id(vdev);
|
|
|
opmode = wlan_vdev_mlme_get_opmode(vdev);
|
|
|
- channel = wlan_freq_to_chan(
|
|
|
- policy_mgr_get_channel(
|
|
|
- soc_obj->soc,
|
|
|
- policy_mgr_convert_device_mode_to_qdf_type(opmode),
|
|
|
- &vdev_id));
|
|
|
+ mode = policy_mgr_convert_device_mode_to_qdf_type(opmode);
|
|
|
+ freq = policy_mgr_get_channel(soc_obj->soc,
|
|
|
+ mode,
|
|
|
+ &vdev_id);
|
|
|
|
|
|
/* Check supported nss for TDLS, if is 1x1, no need to teardown links */
|
|
|
- if (WLAN_REG_IS_24GHZ_CH(channel))
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(freq))
|
|
|
vdev_nss = soc_obj->tdls_configs.tdls_vdev_nss_2g;
|
|
|
else
|
|
|
vdev_nss = soc_obj->tdls_configs.tdls_vdev_nss_5g;
|