mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ASoC: don't indicate error message for snd_soc_[pcm_]component_xxx()
All snd_soc_component_xxx() and snd_soc_pcm_component_xxx() itself indicate error message if failed. Its caller doesn't need to indicate duplicated error message. This patch removes it. All snd_soc_component_xxx() indicate error message if failed. Its caller doesn't need to indicate duplicated error message. This patch removes it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/878s6puta6.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
62462e0182
commit
60adbd8fbf
2 changed files with 3 additions and 8 deletions
|
@ -1203,11 +1203,9 @@ static int soc_probe_component(struct snd_soc_card *card,
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = snd_soc_component_probe(component);
|
ret = snd_soc_component_probe(component);
|
||||||
if (ret < 0) {
|
if (ret < 0)
|
||||||
dev_err(component->dev,
|
|
||||||
"ASoC: failed to probe component %d\n", ret);
|
|
||||||
goto err_probe;
|
goto err_probe;
|
||||||
}
|
|
||||||
WARN(dapm->idle_bias_off &&
|
WARN(dapm->idle_bias_off &&
|
||||||
dapm->bias_level != SND_SOC_BIAS_OFF,
|
dapm->bias_level != SND_SOC_BIAS_OFF,
|
||||||
"codec %s can not start from non-off bias with idle_bias_off==1\n",
|
"codec %s can not start from non-off bias with idle_bias_off==1\n",
|
||||||
|
|
|
@ -2781,11 +2781,8 @@ int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
|
||||||
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
|
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
|
||||||
|
|
||||||
ret = snd_soc_pcm_component_new(rtd);
|
ret = snd_soc_pcm_component_new(rtd);
|
||||||
if (ret < 0) {
|
if (ret < 0)
|
||||||
dev_err(rtd->dev, "ASoC: pcm constructor failed for dailink %s: %d\n",
|
|
||||||
rtd->dai_link->name, ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
|
||||||
|
|
||||||
pcm->no_device_suspend = true;
|
pcm->no_device_suspend = true;
|
||||||
out:
|
out:
|
||||||
|
|
Loading…
Reference in a new issue