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

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

Merge "rpmsg: Change complete to complete_all for open state" into msm-4.14

parents 5f65d718 44f2f7b0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1016,7 +1016,7 @@ static int qcom_glink_rx_open_ack(struct qcom_glink *glink, unsigned int lcid)
	}

	CH_INFO(channel, "\n");
	complete(&channel->open_ack);
	complete_all(&channel->open_ack);

	return 0;
}
@@ -1474,7 +1474,7 @@ static int qcom_glink_rx_open(struct qcom_glink *glink, unsigned int rcid,
	channel->rcid = ret;
	spin_unlock_irqrestore(&glink->idr_lock, flags);

	complete(&channel->open_req);
	complete_all(&channel->open_req);

	if (create_device) {
		rpdev = kzalloc(sizeof(*rpdev), GFP_KERNEL);