|
@@ -3502,7 +3502,7 @@ static void wlan_ipa_uc_op_cb(struct op_msg_type *op_msg,
|
|
|
struct op_msg_type *msg = op_msg;
|
|
|
struct ipa_uc_fw_stats *uc_fw_stat;
|
|
|
|
|
|
- if (!op_msg) {
|
|
|
+ if (!ipa_ctx || !op_msg) {
|
|
|
ipa_err("INVALID ARG");
|
|
|
return;
|
|
|
}
|
|
@@ -3731,9 +3731,6 @@ QDF_STATUS wlan_ipa_uc_ol_init(struct wlan_ipa_priv *ipa_ctx,
|
|
|
ipa_err("Failed to init perf level");
|
|
|
}
|
|
|
|
|
|
- cdp_ipa_register_op_cb(ipa_ctx->dp_soc, ipa_ctx->dp_pdev_id,
|
|
|
- wlan_ipa_uc_op_event_handler, (void *)ipa_ctx);
|
|
|
-
|
|
|
for (i = 0; i < WLAN_IPA_UC_OPCODE_MAX; i++) {
|
|
|
ipa_ctx->uc_op_work[i].osdev = osdev;
|
|
|
qdf_create_work(0, &ipa_ctx->uc_op_work[i].work,
|
|
@@ -3742,6 +3739,8 @@ QDF_STATUS wlan_ipa_uc_ol_init(struct wlan_ipa_priv *ipa_ctx,
|
|
|
ipa_ctx->uc_op_work[i].msg = NULL;
|
|
|
}
|
|
|
|
|
|
+ cdp_ipa_register_op_cb(ipa_ctx->dp_soc, ipa_ctx->dp_pdev_id,
|
|
|
+ wlan_ipa_uc_op_event_handler, (void *)ipa_ctx);
|
|
|
fail_return:
|
|
|
ipa_debug("exit: status=%d", status);
|
|
|
return status;
|
|
@@ -3790,6 +3789,8 @@ QDF_STATUS wlan_ipa_uc_ol_deinit(struct wlan_ipa_priv *ipa_ctx)
|
|
|
wlan_ipa_cleanup_pending_event(ipa_ctx);
|
|
|
qdf_mutex_release(&ipa_ctx->ipa_lock);
|
|
|
|
|
|
+ cdp_ipa_deregister_op_cb(ipa_ctx->dp_soc, ipa_ctx->dp_pdev_id);
|
|
|
+
|
|
|
for (i = 0; i < WLAN_IPA_UC_OPCODE_MAX; i++) {
|
|
|
qdf_cancel_work(&ipa_ctx->uc_op_work[i].work);
|
|
|
qdf_mem_free(ipa_ctx->uc_op_work[i].msg);
|