|
@@ -24,6 +24,7 @@
|
|
|
*/
|
|
|
|
|
|
/* Include Files */
|
|
|
+#include <wbuff.h>
|
|
|
#include "cfg_ucfg_api.h"
|
|
|
#include <wlan_hdd_includes.h>
|
|
|
#include <cds_api.h>
|
|
@@ -2910,6 +2911,10 @@ int hdd_wlan_start_modules(struct hdd_context *hdd_ctx, bool reinit)
|
|
|
goto deinit_config;
|
|
|
}
|
|
|
|
|
|
+ status = wbuff_module_init();
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ hdd_err("WBUFF init unsuccessful; status: %d", status);
|
|
|
+
|
|
|
status = cds_open(hdd_ctx->hdd_psoc);
|
|
|
if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
hdd_err("Failed to Open CDS; status: %d", status);
|
|
@@ -11009,7 +11014,13 @@ int hdd_wlan_stop_modules(struct hdd_context *hdd_ctx, bool ftm_mode)
|
|
|
ret = -EINVAL;
|
|
|
QDF_ASSERT(0);
|
|
|
}
|
|
|
+
|
|
|
+ qdf_status = wbuff_module_deinit();
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(qdf_status))
|
|
|
+ hdd_err("WBUFF de-init unsuccessful; status: %d", qdf_status);
|
|
|
+
|
|
|
hdd_component_pdev_close(hdd_ctx->pdev);
|
|
|
+
|
|
|
hdd_component_psoc_close(hdd_ctx->hdd_psoc);
|
|
|
dispatcher_pdev_close(hdd_ctx->pdev);
|
|
|
ret = hdd_objmgr_release_and_destroy_pdev(hdd_ctx);
|