diff options
author | Shengjiu Wang <shengjiu.wang@nxp.com> | 2021-02-08 16:12:45 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-02-10 17:22:56 +0000 |
commit | b6eabd247db8bb2d013fb9a9451ecb04a44ee58f (patch) | |
tree | 12748df5b762912e95dd60f8538d35f6fd133909 /sound/soc | |
parent | d40dac7ae8c0f213ac1da7896c35ddc2c58419ab (diff) | |
download | linux-b6eabd247db8bb2d013fb9a9451ecb04a44ee58f.tar.gz linux-b6eabd247db8bb2d013fb9a9451ecb04a44ee58f.tar.bz2 linux-b6eabd247db8bb2d013fb9a9451ecb04a44ee58f.zip |
ASoC: soc-pcm: change error message to debug message
This log message should be a debug message, because it
doesn't return directly but continue next loop.
Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/1612771965-5776-1-git-send-email-shengjiu.wang@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/soc-pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index b79f064887d4..8d55f39d4014 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -1344,8 +1344,8 @@ static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream, /* is there a valid BE rtd for this widget */ be = dpcm_get_be(card, widget, stream); if (!be) { - dev_err(fe->dev, "ASoC: no BE found for %s\n", - widget->name); + dev_dbg(fe->dev, "ASoC: no BE found for %s\n", + widget->name); continue; } |