|
@@ -829,8 +829,7 @@ int wlan_hdd_cm_connect(struct wiphy *wiphy,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-static void hdd_cm_rec_connect_info(struct hdd_adapter *adapter,
|
|
|
- struct wlan_cm_connect_resp *rsp)
|
|
|
+static void hdd_cm_rec_connect_info(struct wlan_cm_connect_resp *rsp)
|
|
|
{
|
|
|
if (rsp->is_reassoc)
|
|
|
wlan_rec_conn_info(rsp->vdev_id, DEBUG_CONN_ROAMED_IND,
|
|
@@ -872,7 +871,7 @@ hdd_cm_connect_failure_pre_user_update(struct wlan_objmgr_vdev *vdev,
|
|
|
hdd_conn_remove_connect_info(hdd_sta_ctx);
|
|
|
ucfg_dp_remove_conn_info(vdev);
|
|
|
hdd_cm_update_rssi_snr_by_bssid(adapter);
|
|
|
- hdd_cm_rec_connect_info(adapter, rsp);
|
|
|
+ hdd_cm_rec_connect_info(rsp);
|
|
|
hdd_debug("Invoking packetdump deregistration API");
|
|
|
wlan_deregister_txrx_packetdump(OL_TXRX_PDEV_ID);
|
|
|
}
|
|
@@ -1431,7 +1430,7 @@ hdd_cm_connect_success_pre_user_update(struct wlan_objmgr_vdev *vdev,
|
|
|
qdf_get_time_of_the_day_in_hr_min_sec_usec(sta_ctx->conn_info.connect_time,
|
|
|
time_buffer_size);
|
|
|
hdd_start_tsf_sync(adapter);
|
|
|
- hdd_cm_rec_connect_info(adapter, rsp);
|
|
|
+ hdd_cm_rec_connect_info(rsp);
|
|
|
|
|
|
hdd_cm_save_connect_info(adapter, rsp);
|
|
|
if (adapter->device_mode == QDF_STA_MODE &&
|