summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-core.c
diff options
context:
space:
mode:
authorMartin Hundebøll2018-02-01 11:09:41 +0100
committerMark Brown2018-02-12 13:02:48 +0100
commit6b49087912e311bc884d36874592595508630b88 (patch)
tree367db8f70e420edb2b106aa1e222e76f4ef30db0 /sound/soc/soc-core.c
parentLinux 4.16-rc1 (diff)
downloadkernel-qcow2-linux-6b49087912e311bc884d36874592595508630b88.tar.gz
kernel-qcow2-linux-6b49087912e311bc884d36874592595508630b88.tar.xz
kernel-qcow2-linux-6b49087912e311bc884d36874592595508630b88.zip
ASoC: soc-core: remove error due to probe deferral
Deferred probes shouldn't cause error messages in the boot log, so change the dev_err() to the more harmless dev_info(). Signed-off-by: Martin Hundebøll <mnhu@prevas.dk> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r--sound/soc/soc-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 96c44f6576c9..60a542f35dbd 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1100,8 +1100,8 @@ static int soc_bind_dai_link(struct snd_soc_card *card,
cpu_dai_component.dai_name = dai_link->cpu_dai_name;
rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
if (!rtd->cpu_dai) {
- dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
- dai_link->cpu_dai_name);
+ dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
+ dai_link->cpu_dai_name);
goto _err_defer;
}
snd_soc_rtdcom_add(rtd, rtd->cpu_dai->component);