aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/remoteproc
diff options
context:
space:
mode:
authorSubramaniam C.A <subramaniam.ca@ti.com>2012-04-19 16:38:44 -0500
committerZiyann <jaraidaniel@gmail.com>2014-10-01 12:58:12 +0200
commit58ee9de235bfb57701afd293d8a795816c1434ae (patch)
treeb5e4cab8d3339fbb221f56a17371bdd3417ea449 /drivers/remoteproc
parent81cdfe693409d50a79e72d31a9d8b73b2a8729f3 (diff)
downloadkernel_samsung_tuna-58ee9de235bfb57701afd293d8a795816c1434ae.tar.gz
kernel_samsung_tuna-58ee9de235bfb57701afd293d8a795816c1434ae.tar.bz2
kernel_samsung_tuna-58ee9de235bfb57701afd293d8a795816c1434ae.zip
remoteproc: use dev_dbg to print image version
The version of the remote processor's resource table format is printed using dev_info during the startup path of a remoteproc. The version changes very rarely and hence is converted to use a dev_dbg. An error message is printed anyway in case of a mismatch, so this conversion is useful in helping improve the overall processor init time. Also, version info can be looked up using an offline readrprc utility. Change-Id: I546d3c73582bb7a3fdb2b32b4e3df03ce3a6e7f2 Signed-off-by: Subramaniam C.A <subramaniam.ca@ti.com> Signed-off-by: Suman Anna <s-anna@ti.com>
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r--drivers/remoteproc/remoteproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/remoteproc.c b/drivers/remoteproc/remoteproc.c
index f34f68b6208..de48cb9a60c 100644
--- a/drivers/remoteproc/remoteproc.c
+++ b/drivers/remoteproc/remoteproc.c
@@ -1156,7 +1156,7 @@ static void rproc_loader_cont(const struct firmware *fw, void *context)
goto out;
}
- dev_info(dev, "BIOS image version is %d\n", image->version);
+ dev_dbg(dev, "BIOS image version is %d\n", image->version);
rproc->header = kzalloc(image->header_len, GFP_KERNEL);
if (!rproc->header) {