aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-pcm.c
diff options
context:
space:
mode:
authorShengjiu Wang <b02247@freescale.com>2013-08-09 02:45:51 -0400
committerNitin Garg <nitin.garg@freescale.com>2014-04-16 09:01:13 -0400
commitad60b0e03d058b57f2fd9538e1158da8eefcea1f (patch)
treec710187b635b74a3a3b3f0b4ee4a1e53b84a62ee /sound/soc/soc-pcm.c
parent5a07d5bbea26b06fdc910bf40247168ea917526c (diff)
ENGR00274585-9 ASoC: change error message to debug message
This error message is not actual error, which is a warning. When using FE/BE, if there is widget which is used by playback and capture route, then this message will be printed. Signed-off-by: Shengjiu Wang <b02247@freescale.com>
Diffstat (limited to 'sound/soc/soc-pcm.c')
-rw-r--r--sound/soc/soc-pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index ccb6be4d658d..3cd6ebecefa7 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -817,7 +817,7 @@ static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
817 } 817 }
818 } 818 }
819 819
820 dev_err(card->dev, "ASoC: can't get %s BE for %s\n", 820 dev_dbg(card->dev, "ASoC: can't get %s BE for %s\n",
821 stream ? "capture" : "playback", widget->name); 821 stream ? "capture" : "playback", widget->name);
822 return NULL; 822 return NULL;
823} 823}
@@ -939,7 +939,7 @@ static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
939 /* is there a valid BE rtd for this widget */ 939 /* is there a valid BE rtd for this widget */
940 be = dpcm_get_be(card, list->widgets[i], stream); 940 be = dpcm_get_be(card, list->widgets[i], stream);
941 if (!be) { 941 if (!be) {
942 dev_err(fe->dev, "ASoC: no BE found for %s\n", 942 dev_dbg(fe->dev, "ASoC: no BE found for %s\n",
943 list->widgets[i]->name); 943 list->widgets[i]->name);
944 continue; 944 continue;
945 } 945 }