Message ID | 20250318104715.43267-1-j-choudhary@ti.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 340abded86def0ab8ad8ef9ba73d8ac2fb6fe991 |
Headers | show |
Series | ASoC: ti: j721e-evm: Reduce log level for EPROBE_DEFER | expand |
On Tue, 18 Mar 2025 16:17:15 +0530, Jayesh Choudhary wrote: > Drop the log level for deferral probe to avoid flooding in kernel logs. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: ti: j721e-evm: Reduce log level for EPROBE_DEFER commit: 340abded86def0ab8ad8ef9ba73d8ac2fb6fe991 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
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; }
Drop the log level for deferral probe to avoid flooding in kernel logs. Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com> --- sound/soc/ti/j721e-evm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)