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

Commit 54289995 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "rpmsg: glink: Fix missing mutex_init() in qcom_glink_alloc_channel()"

parents 15408a9d 4c875fe7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -231,6 +231,7 @@ static struct glink_channel *qcom_glink_alloc_channel(struct qcom_glink *glink,
	/* Setup glink internal glink_channel data */
	spin_lock_init(&channel->recv_lock);
	spin_lock_init(&channel->intent_lock);
	mutex_init(&channel->intent_req_lock);

	channel->glink = glink;
	channel->name = kstrdup(name, GFP_KERNEL);