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

Commit 0598f90b authored by Dhoat Harpal's avatar Dhoat Harpal
Browse files

soc: qcom: glink: Fix uninitialzed return value.



Initialize the return value in the glink tx scheduler
function.

CRs-Fixed: 1067981
Change-Id: I3f78196927501f582c36d5815096581185d797b4
Signed-off-by: default avatarDhoat Harpal <hdhoat@codeaurora.org>
parent d3e41c96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2711,7 +2711,7 @@ int glink_close(void *handle)
{
	struct glink_core_xprt_ctx *xprt_ctx = NULL;
	struct channel_ctx *ctx = (struct channel_ctx *)handle;
	int ret;
	int ret = 0;
	unsigned long flags;
	bool is_empty = false;