diff options
author | Jon Hunter <jonathanh@nvidia.com> | 2020-11-11 11:32:45 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-11 13:35:10 +0100 |
commit | 34d3daba23399440dedddd0f9ccd6c1057314139 (patch) | |
tree | 980689c1cb706e6db85f2af06ec09169b0e884cd /sound/soc/tegra/tegra_alc5632.c | |
parent | Merge series "Audio Graph Updates" from Sameer Pujar <spujar@nvidia.com>: (diff) | |
download | linux-34d3daba23399440dedddd0f9ccd6c1057314139.tar.xz linux-34d3daba23399440dedddd0f9ccd6c1057314139.zip |
ASoC: tegra: Don't warn on probe deferral
Deferred probe is an expected return value for snd_soc_register_card().
Given that the driver deals with it properly, there's no need to output
a warning that may potentially confuse users.
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Link: https://lore.kernel.org/r/20201111103245.152189-1-jonathanh@nvidia.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/tegra/tegra_alc5632.c')
-rw-r--r-- | sound/soc/tegra/tegra_alc5632.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/tegra/tegra_alc5632.c b/sound/soc/tegra/tegra_alc5632.c index 8661877bf4c6..0a0efd24e4b0 100644 --- a/sound/soc/tegra/tegra_alc5632.c +++ b/sound/soc/tegra/tegra_alc5632.c @@ -203,8 +203,8 @@ static int tegra_alc5632_probe(struct platform_device *pdev) ret = snd_soc_register_card(card); if (ret) { - dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", - ret); + dev_err_probe(&pdev->dev, ret, + "snd_soc_register_card failed\n"); goto err_put_cpu_of_node; } |