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

Commit edeb1500 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: vidc: fix a return value uninitialized issue"

parents fc442555 635bd3e0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -6247,7 +6247,6 @@ struct msm_vidc_buffer *msm_comm_get_buffer_using_device_planes(
int msm_comm_flush_vidc_buffer(struct msm_vidc_inst *inst,
		struct msm_vidc_buffer *mbuf)
{
	int rc;
	struct vb2_buffer *vb;
	u32 port;

@@ -6283,7 +6282,7 @@ int msm_comm_flush_vidc_buffer(struct msm_vidc_inst *inst,
	}
	mutex_unlock(&inst->bufq[port].lock);

	return rc;
	return 0;
}

int msm_comm_qbuf_cache_operations(struct msm_vidc_inst *inst,