aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rpmsg
diff options
context:
space:
mode:
authorSubramaniam C.A <subramaniam.ca@ti.com>2012-04-19 16:43:49 -0500
committerDmytro Kedrovskyi <x0169235@ti.com>2012-05-03 16:21:44 +0300
commit379a5850fea3fb55f713e602bbe02c794e36fb91 (patch)
tree428653cf458eb44548d1600277a53da95ffd0f06 /drivers/rpmsg
parent85115878905e6475af4b8abfaf638990fbfb8f12 (diff)
downloadkernel_samsung_espresso10-379a5850fea3fb55f713e602bbe02c794e36fb91.zip
kernel_samsung_espresso10-379a5850fea3fb55f713e602bbe02c794e36fb91.tar.gz
kernel_samsung_espresso10-379a5850fea3fb55f713e602bbe02c794e36fb91.tar.bz2
rpmsg: use dev_dbg for channel creation/deletion messages
The number of rpmsg channels is decently high enough during both the initialization and tear-up/recovery of the remote processor to effect overall boot time. The trace level of this print is therefore reduced to improves the overall image init time. It also helps with the runtime performance of usecases as they have to create and delete a channel. Change-Id: I96c293d990bc41f1a9dcd6710ef1388fa2ce2cec Signed-off-by: Subramaniam C.A <subramaniam.ca@ti.com> Signed-off-by: Suman Anna <s-anna@ti.com>
Diffstat (limited to 'drivers/rpmsg')
-rw-r--r--drivers/rpmsg/virtio_rpmsg_bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rpmsg/virtio_rpmsg_bus.c b/drivers/rpmsg/virtio_rpmsg_bus.c
index af7b73f..4934073 100644
--- a/drivers/rpmsg/virtio_rpmsg_bus.c
+++ b/drivers/rpmsg/virtio_rpmsg_bus.c
@@ -645,7 +645,7 @@ static void rpmsg_ns_cb(struct rpmsg_channel *rpdev, void *data, int len,
/* don't trust the remote processor for null terminating the name */
msg->name[RPMSG_NAME_SIZE - 1] = '\0';
- dev_info(dev, "%sing channel %s addr 0x%x\n",
+ dev_dbg(dev, "%sing channel %s addr 0x%x\n",
msg->flags & RPMSG_NS_DESTROY ? "destroy" : "creat",
msg->name, msg->addr);