summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJayesh Choudhary <j-choudhary@ti.com>2025-03-18 16:17:15 +0530
committerMark Brown <broonie@kernel.org>2025-03-18 12:25:05 +0000
commit340abded86def0ab8ad8ef9ba73d8ac2fb6fe991 (patch)
tree719a6488b7ca9f0fedf9c3ab211114af6fdf9c7c /sound
parentebfbcfc7b962c06c43cd19cf07396d1e5d545d4b (diff)
ASoC: ti: j721e-evm: Reduce log level for EPROBE_DEFER
Drop the log level for deferral probe to avoid flooding in kernel logs. Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com> Link: https://patch.msgid.link/20250318104715.43267-1-j-choudhary@ti.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/ti/j721e-evm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/ti/j721e-evm.c b/sound/soc/ti/j721e-evm.c
index c0fa72e626ff..2057d46ad884 100644
--- a/sound/soc/ti/j721e-evm.c
+++ b/sound/soc/ti/j721e-evm.c
@@ -913,8 +913,9 @@ static int j721e_soc_probe(struct platform_device *pdev)
mutex_init(&priv->mutex);
ret = devm_snd_soc_register_card(&pdev->dev, card);
if (ret)
- dev_err(&pdev->dev, "devm_snd_soc_register_card() failed: %d\n",
- ret);
+ dev_err_probe(&pdev->dev, ret,
+ "devm_snd_soc_register_card() failed: %d\n",
+ ret);
return ret;
}