* [PATCH] ASoC: uniphier: Drop redundant error messages in probe
@ 2026-07-10 11:02 phucduc.bui
2026-07-18 12:23 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: phucduc.bui @ 2026-07-10 11:02 UTC (permalink / raw)
To: Kunihiko Hayashi, Jaroslav Kysela, Takashi Iwai, Liam Girdwood,
Mark Brown, Masami Hiramatsu
Cc: Kuninori Morimoto, linux-sound, linux-kernel, linux-arm-kernel,
bui duc phuc
From: bui duc phuc <phucduc.bui@gmail.com>
Return the error directly when the helper already reports the failure,
avoiding duplicate log messages.
Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
---
sound/soc/uniphier/aio-cpu.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/sound/soc/uniphier/aio-cpu.c b/sound/soc/uniphier/aio-cpu.c
index d3dba21b2d04..78c82bf42a8f 100644
--- a/sound/soc/uniphier/aio-cpu.c
+++ b/sound/soc/uniphier/aio-cpu.c
@@ -795,16 +795,12 @@ int uniphier_aio_probe(struct platform_device *pdev)
ret = devm_snd_soc_register_component(dev, &uniphier_aio_component,
chip->chip_spec->dais,
chip->chip_spec->num_dais);
- if (ret) {
- dev_err(dev, "Register component failed.\n");
+ if (ret)
goto err_out_reset;
- }
ret = uniphier_aiodma_soc_register_platform(pdev);
- if (ret) {
- dev_err(dev, "Register platform failed.\n");
+ if (ret)
goto err_out_reset;
- }
return 0;
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] ASoC: uniphier: Drop redundant error messages in probe
2026-07-10 11:02 [PATCH] ASoC: uniphier: Drop redundant error messages in probe phucduc.bui
@ 2026-07-18 12:23 ` Mark Brown
0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2026-07-18 12:23 UTC (permalink / raw)
To: Kunihiko Hayashi, Jaroslav Kysela, Takashi Iwai, Liam Girdwood,
Masami Hiramatsu, phucduc.bui
Cc: Kuninori Morimoto, linux-sound, linux-kernel, linux-arm-kernel
On Fri, 10 Jul 2026 18:02:49 +0700, phucduc.bui@gmail.com wrote:
> ASoC: uniphier: Drop redundant error messages in probe
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.3
Thanks!
[1/1] ASoC: uniphier: Drop redundant error messages in probe
https://git.kernel.org/broonie/sound/c/c89b22faa9ba
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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-18 21:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-10 11:02 [PATCH] ASoC: uniphier: Drop redundant error messages in probe phucduc.bui
2026-07-18 12:23 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome