ASoC: Intel: common: increase the loglevel of "FW Poll Status".
authorVedang Patel <vedang.patel@intel.com>
Sat, 25 Jun 2016 00:37:10 +0000 (17:37 -0700)
committerMark Brown <broonie@kernel.org>
Mon, 27 Jun 2016 14:51:29 +0000 (15:51 +0100)
For consistency with other log statements, change dev_info to dev_dbg
for a kernel print which is frequently printed by the driver.

Signed-off-by: Vedang Patel <vedang.patel@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/common/sst-dsp.c

index b5bbdf4..ff2196e 100644 (file)
@@ -285,7 +285,7 @@ int sst_dsp_register_poll(struct sst_dsp *ctx, u32 offset, u32 mask,
        }
 
        reg = sst_dsp_shim_read_unlocked(ctx, offset);
-       dev_info(ctx->dev, "FW Poll Status: reg=%#x %s %s\n", reg, operation,
+       dev_dbg(ctx->dev, "FW Poll Status: reg=%#x %s %s\n", reg, operation,
                        (time < timeout) ? "successful" : "timedout");
        ret = time < timeout ? 0 : -ETIME;