Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 814b5306 authored by Dhoat Harpal's avatar Dhoat Harpal Committed by Gerrit - the friendly Code Review server
Browse files

soc: qcom: glink: Fix incorrect call to deinit function



In function glink_core_register_transport, deinit function for qos
configuration is called before initializing qos configuration.

Call to glink_core_deinit_xprt_qos_cfg function is removed.

CRs-Fixed: 1088375
Change-Id: Ifffab071efed56541e763e4f6f51aa45d7a6678b
Signed-off-by: default avatarDhoat Harpal <hdhoat@codeaurora.org>
parent d30a0622
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -3944,7 +3944,6 @@ int glink_core_register_transport(struct glink_transport_if *if_ptr,
			xprt_ptr->edge, xprt_ptr->name);
	if (IS_ERR_OR_NULL(xprt_ptr->tx_task)) {
		GLINK_ERR("%s: unable to run thread\n", __func__);
		glink_core_deinit_xprt_qos_cfg(xprt_ptr);
		kfree(xprt_ptr);
		return -ENOMEM;
	}