qcacld-3.0: HDD cleanup for IPA API ucfg_ipa_wlan_evt

Currently, the IPA AIP ucfg_ipa_wlan_evt  takes as input the sta_id. As a
part of cleaning up the usage of sta_id, remove the parameter. Since
mac_addr is already present in the list of parameters, no need to add.

Change-Id: Iacc4a05de88973014eb4bcc1dfc97b7dc4a0d4fa
CRs-Fixed: 2503944
This commit is contained in:
Sourav Mohapatra 2019-08-06 15:08:36 +05:30 committed by nshrivas
parent 96703f64d6
commit 570a46c710
3 changed files with 0 additions and 6 deletions

View File

@ -1724,7 +1724,6 @@ static QDF_STATUS hdd_dis_connect_handler(struct hdd_adapter *adapter,
(sta_ctx->conn_info.sta_id[0] != HDD_WLAN_INVALID_STA_ID))
ucfg_ipa_wlan_evt(hdd_ctx->pdev, adapter->dev,
adapter->device_mode,
sta_ctx->conn_info.sta_id[0],
adapter->vdev_id,
WLAN_IPA_STA_DISCONNECT,
sta_ctx->conn_info.bssid.bytes);
@ -2920,7 +2919,6 @@ hdd_association_completion_handler(struct hdd_adapter *adapter,
if (ucfg_ipa_is_enabled())
ucfg_ipa_wlan_evt(hdd_ctx->pdev, adapter->dev,
adapter->device_mode,
roam_info->staId,
adapter->vdev_id,
WLAN_IPA_STA_CONNECT,
roam_info->bssid.bytes);

View File

@ -1888,7 +1888,6 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
status = ucfg_ipa_wlan_evt(hdd_ctx->pdev,
adapter->dev,
adapter->device_mode,
ap_ctx->broadcast_sta_id,
adapter->vdev_id,
WLAN_IPA_AP_CONNECT,
adapter->dev->dev_addr);
@ -2232,7 +2231,6 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
status = ucfg_ipa_wlan_evt(hdd_ctx->pdev,
adapter->dev,
adapter->device_mode,
event->staId,
adapter->vdev_id,
WLAN_IPA_CLIENT_CONNECT_EX,
event->staMac.bytes);

View File

@ -1032,7 +1032,6 @@ QDF_STATUS hdd_softap_deregister_sta(struct hdd_adapter *adapter,
if (ucfg_ipa_is_enabled()) {
if (ucfg_ipa_wlan_evt(hdd_ctx->pdev, adapter->dev,
adapter->device_mode,
adapter->sta_info[sta_id].sta_id,
adapter->vdev_id,
WLAN_IPA_CLIENT_DISCONNECT,
adapter->sta_info[sta_id].sta_mac.
@ -1265,7 +1264,6 @@ QDF_STATUS hdd_softap_stop_bss(struct hdd_adapter *adapter)
if (ucfg_ipa_wlan_evt(hdd_ctx->pdev,
adapter->dev,
adapter->device_mode,
ap_ctx->broadcast_sta_id,
adapter->vdev_id,
WLAN_IPA_AP_DISCONNECT,
adapter->dev->dev_addr) !=