rpmsg: glink: Fix print format

Use unsigned to print u32 cid in qcom_glink_handle_intent_req.

Change-Id: I314f4a298f9598b07e4a79aa6e13984edb3faacf
Signed-off-by: Chris Lew <quic_clew@quicinc.com>
This commit is contained in:
Chris Lew 2022-08-01 18:05:38 -07:00
parent d154840818
commit 4e40649bf5

View File

@ -791,7 +791,7 @@ static void qcom_glink_handle_intent_req(struct qcom_glink *glink,
spin_unlock_irqrestore(&glink->idr_lock, flags);
if (!channel) {
pr_err("%s channel not found for cid %d\n", __func__, cid);
pr_err("%s channel not found for cid %u\n", __func__, cid);
return;
}