|
@@ -2929,6 +2929,42 @@ CDF_STATUS wma_wmi_service_close(void *cds_ctx)
|
|
|
return CDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * wma_wmi_work_close() - close the work queue items associated with WMI
|
|
|
+ * @cds_ctx: Pointer to cds context
|
|
|
+ *
|
|
|
+ * This function closes work queue items associated with WMI, but not fully
|
|
|
+ * closes WMI service.
|
|
|
+ *
|
|
|
+ * Return: CDF_STATUS_SUCCESS if work close is successful. Otherwise
|
|
|
+ * proper error codes.
|
|
|
+ */
|
|
|
+CDF_STATUS wma_wmi_work_close(void *cds_ctx)
|
|
|
+{
|
|
|
+ tp_wma_handle wma_handle;
|
|
|
+
|
|
|
+ WMA_LOGD("%s: Enter", __func__);
|
|
|
+
|
|
|
+ wma_handle = cds_get_context(CDF_MODULE_ID_WMA);
|
|
|
+
|
|
|
+ /* validate the wma_handle */
|
|
|
+ if (NULL == wma_handle) {
|
|
|
+ WMA_LOGE("%s: Invalid wma handle", __func__);
|
|
|
+ return CDF_STATUS_E_INVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* validate the wmi handle */
|
|
|
+ if (NULL == wma_handle->wmi_handle) {
|
|
|
+ WMA_LOGE("%s: Invalid wmi handle", __func__);
|
|
|
+ return CDF_STATUS_E_INVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* remove the wmi work */
|
|
|
+ WMA_LOGD("calling wmi_unified_remove_work");
|
|
|
+ wmi_unified_remove_work(wma_handle->wmi_handle);
|
|
|
+
|
|
|
+ return CDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
|
|
|
|
|
|
/**
|