[PATCH v2 1/2] ASoC: sunxi: sun4i-codec: silence misleading error in probe
Mikhail Rudenko
mike.rudenko at gmail.com
Tue Sep 13 23:22:54 CEST 2022
In the case when a codec device is probed before codec analog
controls, snd_soc_register_card() returns -EPROBE_DEFER, resulting in
a misleading error message
sun4i-codec 1c22c00.codec: Failed to register our card
even if the device is probed successfully later. Use dev_err_probe()
to demote the above error to a debug message.
Acked-by: Jernej Skrabec <jernej.skrabec at gmail.com>
Signed-off-by: Mikhail Rudenko <mike.rudenko at gmail.com>
---
changes in v2:
- rebase against current tree
- add Jernej's Acked-by
sound/soc/sunxi/sun4i-codec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/sunxi/sun4i-codec.c b/sound/soc/sunxi/sun4i-codec.c
index 830beb38bf15..3a7075d03c23 100644
--- a/sound/soc/sunxi/sun4i-codec.c
+++ b/sound/soc/sunxi/sun4i-codec.c
@@ -1804,7 +1804,7 @@ static int sun4i_codec_probe(struct platform_device *pdev)
ret = snd_soc_register_card(card);
if (ret) {
- dev_err(&pdev->dev, "Failed to register our card\n");
+ dev_err_probe(&pdev->dev, ret, "Failed to register our card\n");
goto err_assert_reset;
}
--
2.37.3
More information about the Alsa-devel
mailing list