|
@@ -2679,6 +2679,7 @@ sme_process_sap_ch_width_update_rsp(struct mac_context *mac, uint8_t *msg)
|
|
|
enum policy_mgr_conn_update_reason reason;
|
|
|
uint32_t request_id;
|
|
|
uint8_t vdev_id;
|
|
|
+ QDF_STATUS status = QDF_STATUS_E_NOMEM;
|
|
|
|
|
|
param = (struct sir_bcn_update_rsp *)msg;
|
|
|
if (!param)
|
|
@@ -2710,8 +2711,10 @@ sme_process_sap_ch_width_update_rsp(struct mac_context *mac, uint8_t *msg)
|
|
|
reason = command->u.bw_update_cmd.reason;
|
|
|
request_id = command->u.bw_update_cmd.request_id;
|
|
|
vdev_id = command->u.bw_update_cmd.conc_vdev_id;
|
|
|
+ if (param)
|
|
|
+ status = param->status;
|
|
|
sme_debug("vdev %d reason %d status %d cm_id 0x%x",
|
|
|
- vdev_id, reason, param->status, request_id);
|
|
|
+ vdev_id, reason, status, request_id);
|
|
|
|
|
|
if (reason == POLICY_MGR_UPDATE_REASON_CHANNEL_SWITCH_STA) {
|
|
|
sme_debug("Continue channel switch for STA on vdev %d",
|
|
@@ -2719,9 +2722,9 @@ sme_process_sap_ch_width_update_rsp(struct mac_context *mac, uint8_t *msg)
|
|
|
csr_sta_continue_csa(mac, vdev_id);
|
|
|
} else if (reason == POLICY_MGR_UPDATE_REASON_STA_CONNECT) {
|
|
|
sme_debug("Continue connect/reassoc on vdev %d reason %d status %d cm_id 0x%x",
|
|
|
- vdev_id, reason, param->status, request_id);
|
|
|
+ vdev_id, reason, status, request_id);
|
|
|
wlan_cm_handle_hw_mode_change_resp(mac->pdev, vdev_id,
|
|
|
- request_id, param->status);
|
|
|
+ request_id, status);
|
|
|
}
|
|
|
|
|
|
policy_mgr_set_connection_update(mac->psoc);
|