|
@@ -2409,6 +2409,7 @@ static QDF_STATUS send_peer_unmap_conf_cmd_tlv(wmi_unified_t wmi,
|
|
|
wmi_peer_unmap_response_cmd_fixed_param *cmd;
|
|
|
uint32_t peer_id_list_len;
|
|
|
uint32_t len = sizeof(*cmd);
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
if (!peer_id_cnt || !peer_id_list)
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -2447,12 +2448,13 @@ static QDF_STATUS send_peer_unmap_conf_cmd_tlv(wmi_unified_t wmi,
|
|
|
WMI_LOGD("%s: vdev_id %d peer_id_cnt %d", __func__,
|
|
|
vdev_id, peer_id_cnt);
|
|
|
wmi_mtrace(WMI_PEER_UNMAP_RESPONSE_CMDID, vdev_id, 0);
|
|
|
- if (wmi_unified_cmd_send(wmi, buf, len,
|
|
|
- WMI_PEER_UNMAP_RESPONSE_CMDID)) {
|
|
|
- WMI_LOGP("%s: Failed to send peer delete conf command",
|
|
|
- __func__);
|
|
|
+ status = wmi_unified_cmd_send(wmi, buf, len,
|
|
|
+ WMI_PEER_UNMAP_RESPONSE_CMDID);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ WMI_LOGE("%s: Failed to send peer unmap conf command: Err[%d]",
|
|
|
+ __func__, status);
|
|
|
wmi_buf_free(buf);
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|