aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/remoteproc/omap_remoteproc.c
diff options
context:
space:
mode:
authorAnna, Suman <s-anna@ti.com>2016-08-12 18:42:23 -0500
committerBjorn Andersson <bjorn.andersson@linaro.org>2016-08-12 21:27:50 -0700
commit14096c13ef5bc0d21819a502f2b71ae17b60e452 (patch)
treef53130445e83e951c6a087e3a66f79880ef56648 /drivers/remoteproc/omap_remoteproc.c
parentremoteproc/omap: fix various code formatting issues (diff)
downloadlinux-dev-14096c13ef5bc0d21819a502f2b71ae17b60e452.tar.xz
linux-dev-14096c13ef5bc0d21819a502f2b71ae17b60e452.zip
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: Suman Anna <s-anna@ti.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/omap_remoteproc.c')
-rw-r--r--drivers/remoteproc/omap_remoteproc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/remoteproc/omap_remoteproc.c b/drivers/remoteproc/omap_remoteproc.c
index ddc1a12d75e0..01e234cb9157 100644
--- a/drivers/remoteproc/omap_remoteproc.c
+++ b/drivers/remoteproc/omap_remoteproc.c
@@ -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);
}
/*