|
@@ -1829,10 +1829,6 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
sta_id, status, status);
|
|
|
status = QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
- if (sta_id < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta id %d", sta_id);
|
|
|
/* Clear all the peer sta register with TL. */
|
|
|
for (i = 0; i < MAX_PEERS; i++) {
|
|
|
if (HDD_WLAN_INVALID_STA_ID ==
|
|
@@ -1855,10 +1851,7 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
HDD_WLAN_INVALID_STA_ID;
|
|
|
qdf_mem_zero(&sta_ctx->conn_info.peer_macaddr[i],
|
|
|
sizeof(struct qdf_mac_addr));
|
|
|
- if (sta_id < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta_id %d", sta_id);
|
|
|
+
|
|
|
}
|
|
|
} else {
|
|
|
sta_id = sta_ctx->conn_info.sta_id[0];
|
|
@@ -1875,10 +1868,7 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
|
|
|
sme_remove_bssid_from_scan_list(mac_handle,
|
|
|
sta_ctx->conn_info.bssid.bytes);
|
|
|
}
|
|
|
- if (sta_id < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[sta_id] = NULL;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta_id %d", sta_id);
|
|
|
+
|
|
|
}
|
|
|
/* Clear saved connection information in HDD */
|
|
|
hdd_conn_remove_connect_info(sta_ctx);
|
|
@@ -2897,10 +2887,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
|
|
|
sta_ctx->ft_carrier_on = false;
|
|
|
ft_carrier_on = true;
|
|
|
}
|
|
|
- if (roam_info->staId < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[roam_info->staId] = adapter;
|
|
|
- else
|
|
|
- hdd_err("Wrong Staid: %d", roam_info->staId);
|
|
|
|
|
|
if (ucfg_ipa_is_enabled())
|
|
|
ucfg_ipa_wlan_evt(hdd_ctx->pdev, adapter->dev,
|
|
@@ -3571,12 +3557,6 @@ static void hdd_roam_ibss_indication_handler(struct hdd_adapter *adapter,
|
|
|
|
|
|
hdd_sta_ctx->broadcast_sta_id = roam_info->staId;
|
|
|
|
|
|
- if (roam_info->staId < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[roam_info->staId] =
|
|
|
- adapter;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta id %d", roam_info->staId);
|
|
|
-
|
|
|
hdd_roam_register_sta(adapter, roam_info,
|
|
|
roam_info->staId,
|
|
|
roam_info->bss_desc);
|
|
@@ -3901,7 +3881,6 @@ roam_roam_connect_status_update_handler(struct hdd_adapter *adapter,
|
|
|
eRoamCmdStatus roam_status,
|
|
|
eCsrRoamResult roam_result)
|
|
|
{
|
|
|
- struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
QDF_STATUS qdf_status;
|
|
|
|
|
@@ -3928,11 +3907,6 @@ roam_roam_connect_status_update_handler(struct hdd_adapter *adapter,
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- if (roam_info->staId < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[roam_info->staId] = adapter;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta id %d", roam_info->staId);
|
|
|
-
|
|
|
if (hdd_is_key_install_required_for_ibss(encr_type))
|
|
|
roam_info->fAuthRequired = true;
|
|
|
|
|
@@ -4010,11 +3984,6 @@ roam_roam_connect_status_update_handler(struct hdd_adapter *adapter,
|
|
|
|
|
|
hdd_roam_deregister_sta(adapter, roam_info->peerMac);
|
|
|
|
|
|
- if (roam_info->staId < HDD_MAX_ADAPTERS)
|
|
|
- hdd_ctx->sta_to_adapter[roam_info->staId] = NULL;
|
|
|
- else
|
|
|
- hdd_debug("invalid sta id %d", roam_info->staId);
|
|
|
-
|
|
|
sta_ctx->ibss_sta_generation++;
|
|
|
|
|
|
cfg80211_del_sta(adapter->dev,
|