diff options
author | Vedang Patel <vedang.patel@intel.com> | 2016-06-24 20:37:10 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-27 10:51:29 -0400 |
commit | ef06b6f3912f4438f9275922dae17c11360ceefc (patch) | |
tree | 9a38866c95726e44d314f72c99d62b4aacbcd9fa /sound/soc/intel/common/sst-dsp.c | |
parent | 3cb7cec14415ff8544ae702f396f913cd9008e7e (diff) |
ASoC: Intel: common: increase the loglevel of "FW Poll Status".
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>
Diffstat (limited to 'sound/soc/intel/common/sst-dsp.c')
-rw-r--r-- | sound/soc/intel/common/sst-dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/common/sst-dsp.c b/sound/soc/intel/common/sst-dsp.c index b5bbdf4fe93a..ff2196ef359f 100644 --- a/sound/soc/intel/common/sst-dsp.c +++ b/sound/soc/intel/common/sst-dsp.c | |||
@@ -285,7 +285,7 @@ int sst_dsp_register_poll(struct sst_dsp *ctx, u32 offset, u32 mask, | |||
285 | } | 285 | } |
286 | 286 | ||
287 | reg = sst_dsp_shim_read_unlocked(ctx, offset); | 287 | reg = sst_dsp_shim_read_unlocked(ctx, offset); |
288 | dev_info(ctx->dev, "FW Poll Status: reg=%#x %s %s\n", reg, operation, | 288 | dev_dbg(ctx->dev, "FW Poll Status: reg=%#x %s %s\n", reg, operation, |
289 | (time < timeout) ? "successful" : "timedout"); | 289 | (time < timeout) ? "successful" : "timedout"); |
290 | ret = time < timeout ? 0 : -ETIME; | 290 | ret = time < timeout ? 0 : -ETIME; |
291 | 291 | ||