|
@@ -109,9 +109,9 @@ static uint32_t convert_target_pdev_id_to_host_pdev_id(uint32_t pdev_id)
|
|
|
return WMI_HOST_PDEV_ID_2;
|
|
|
}
|
|
|
|
|
|
- QDF_ASSERT(0);
|
|
|
+ WMI_LOGE("Invalid pdev_id");
|
|
|
|
|
|
- return WMI_HOST_PDEV_ID_SOC;
|
|
|
+ return WMI_HOST_PDEV_ID_INVALID;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -10052,8 +10052,13 @@ static QDF_STATUS extract_dfs_radar_detection_event_tlv(
|
|
|
}
|
|
|
|
|
|
radar_event = param_tlv->fixed_param;
|
|
|
+
|
|
|
radar_found->pdev_id = convert_target_pdev_id_to_host_pdev_id(
|
|
|
- radar_event->pdev_id);
|
|
|
+ radar_event->pdev_id);
|
|
|
+
|
|
|
+ if (radar_found->pdev_id == WMI_HOST_PDEV_ID_INVALID)
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+
|
|
|
radar_found->detection_mode = radar_event->detection_mode;
|
|
|
radar_found->chan_freq = radar_event->chan_freq;
|
|
|
radar_found->chan_width = radar_event->chan_width;
|
|
@@ -11009,8 +11014,12 @@ extract_esp_estimation_ev_param_tlv(wmi_unified_t wmi_handle,
|
|
|
}
|
|
|
esp_event = param_buf->fixed_param;
|
|
|
param->ac_airtime_percentage = esp_event->ac_airtime_percentage;
|
|
|
+
|
|
|
param->pdev_id = convert_target_pdev_id_to_host_pdev_id(
|
|
|
- esp_event->pdev_id);
|
|
|
+ esp_event->pdev_id);
|
|
|
+
|
|
|
+ if (param->pdev_id == WMI_HOST_PDEV_ID_INVALID)
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|