]> rtime.felk.cvut.cz Git - sojka/nv-tegra/linux-3.10.git/commitdiff
video: tegra: host: move firmware prints from info to debug
authorEric Brower <ebrower@nvidia.com>
Tue, 10 Jun 2014 02:00:04 +0000 (19:00 -0700)
committerMatthew Pedro <mapedro@nvidia.com>
Wed, 11 Jun 2014 04:15:15 +0000 (21:15 -0700)
Firmware loading logs firmware names at the info loglevel; move this
to debug to prevent extraneous noise in syslog when these files are
opened.

Bug 1486252

Change-Id: Icea62ad19dd467dd01ca88125de88fbfafc1e716
Signed-off-by: Eric Brower <ebrower@nvidia.com>
Reviewed-on: http://git-master/r/421353
Reviewed-by: Bibek Basu <bbasu@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Matthew Pedro <mapedro@nvidia.com>
drivers/video/tegra/host/msenc/msenc.c
drivers/video/tegra/host/tsec/tsec.c
drivers/video/tegra/host/vic03/vic03.c

index 4a71de3129785f2a29afc15976bf9129a81c2380..c260ec1740d3db8cda044b986e29e6707c72e669 100644 (file)
@@ -76,7 +76,7 @@ static char *msenc_get_fw_name(struct platform_device *dev)
                return NULL;
        }
 
-       dev_info(&dev->dev, "fw name:%s\n", fw_name);
+       dev_dbg(&dev->dev, "fw name:%s\n", fw_name);
 
        return fw_name;
 }
index 9316ab5bc9cc198f48c732d0324cebb9c6034748..eba08a1aec4e8d24b7ad59780c801d0cf3fcf561 100644 (file)
@@ -80,7 +80,7 @@ static char *tsec_get_fw_name(struct platform_device *dev)
                return NULL;
        }
 
-       dev_info(&dev->dev, "fw name:%s\n", fw_name);
+       dev_dbg(&dev->dev, "fw name:%s\n", fw_name);
 
        return fw_name;
 }
index 35816243e0b5873c1f3e132fdc7ba1feceef6e21..b58f938eae096fa79cccecb96f736036c3e6c839 100644 (file)
@@ -73,7 +73,7 @@ static char *vic_get_fw_name(struct platform_device *dev)
 
        decode_vic_ver(pdata->version, &maj, &min);
        sprintf(fw_name, "vic%02d_ucode.bin", maj);
-       dev_info(&dev->dev, "fw name:%s\n", fw_name);
+       dev_dbg(&dev->dev, "fw name:%s\n", fw_name);
 
        return fw_name;
 }