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

Commit 14096c13 authored by Anna, Suman's avatar Anna, Suman Committed by Bjorn Andersson
Browse files

remoteproc/omap: revise a minor error trace message



The omap_mbox_msg_send() is the legacy API for sending a mailbox
message. It has been replaced with the mbox_send_message() from
the mailbox framework. Revise the failure trace to print a generic
failure message instead of referencing the actual function name.

Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 334765f4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -96,7 +96,8 @@ static void omap_rproc_kick(struct rproc *rproc, int vqid)
	/* send the index of the triggered virtqueue in the mailbox payload */
	ret = mbox_send_message(oproc->mbox, (void *)vqid);
	if (ret < 0)
		dev_err(dev, "omap_mbox_msg_send failed: %d\n", ret);
		dev_err(dev, "failed to send mailbox message, status = %d\n",
			ret);
}

/*