summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiena Richard <sienar@codeaurora.org>2016-11-04 13:21:16 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-11-04 13:40:34 -0700
commit94c9d333eb674428acca1f5a04bb4c3ff2e2dce5 (patch)
tree56e541423bb6c896f99eb2e10eca649d50ebc4fa
parent758693b4a6d94a0724081578d24f6ba1cc449255 (diff)
ASoC: Change info logs to debug
Change ASoC info logs to debug to reduce excessive logging during bootup. Change-Id: I142b35901e8ba7724d3ba74ae8c58be3bc8dc44a CRs-fixed: 1073250 Signed-off-by: Siena Richard <sienar@codeaurora.org>
-rw-r--r--sound/soc/soc-compress.c4
-rw-r--r--sound/soc/soc-pcm.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/soc-compress.c b/sound/soc/soc-compress.c
index c8f45b4efa21..f4ceb5f5c678 100644
--- a/sound/soc/soc-compress.c
+++ b/sound/soc/soc-compress.c
@@ -852,8 +852,8 @@ int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
}
}
- printk(KERN_INFO "compress asoc: %s <-> %s mapping ok\n", codec_dai->name,
- cpu_dai->name);
+ dev_dbg(rtd->card->dev, "compress asoc: %s <-> %s mapping ok\n",
+ codec_dai->name, cpu_dai->name);
return ret;
compr_err:
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 4ef20ba02cb4..13649f96b370 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -3017,7 +3017,7 @@ int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
pcm->private_free = platform->driver->pcm_free;
out:
- dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
+ dev_dbg(rtd->card->dev, "%s <-> %s mapping ok\n",
(rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
cpu_dai->name);
return ret;