mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 6.1] ASoC: rt5682s: Return devm_of_clk_add_hw_provider to transfer the error
@ 2024-10-14  8:01 Vitaliy Shevtsov
  0 siblings, 0 replies; only message in thread
From: Vitaliy Shevtsov @ 2024-10-14  8:01 UTC (permalink / raw)
  To: stable, Greg Kroah-Hartman
  Cc: Vitaliy Shevtsov, Ma Ke, Mark Brown, Oder Chiou, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, derek.fang, alsa-devel,
	linux-kernel, lvc-project

From: Ma Ke <make24@iscas.ac.cn>

commit 3ff810b9bebe5578a245cfa97c252ab602e703f1 upstream.

Return devm_of_clk_add_hw_provider() in order to transfer the error, if it
fails due to resource allocation failure or device tree clock provider
registration failure.

Fixes: bdd229ab26be ("ASoC: rt5682s: Add driver for ALC5682I-VS codec")
Signed-off-by: Ma Ke <make24@iscas.ac.cn>
Link: https://patch.msgid.link/20240717115436.3449492-1-make24@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Vitaliy Shevtsov <v.shevtsov@maxima.ru>
---
 sound/soc/codecs/rt5682s.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sound/soc/codecs/rt5682s.c b/sound/soc/codecs/rt5682s.c
index 80c673aa14db..07d514b4ce70 100644
--- a/sound/soc/codecs/rt5682s.c
+++ b/sound/soc/codecs/rt5682s.c
@@ -2828,7 +2828,9 @@ static int rt5682s_register_dai_clks(struct snd_soc_component *component)
 		}
 
 		if (dev->of_node) {
-			devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, dai_clk_hw);
+			ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, dai_clk_hw);
+			if (ret)
+				return ret;
 		} else {
 			ret = devm_clk_hw_register_clkdev(dev, dai_clk_hw,
 							  init.name, dev_name(dev));
-- 
2.46.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-10-14  8:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-14  8:01 [PATCH 6.1] ASoC: rt5682s: Return devm_of_clk_add_hw_provider to transfer the error Vitaliy Shevtsov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®