All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ASoC: meson: fixes the missed kfree() for axg_card_add_tdm_loopback
@ 2020-07-17  8:22 ` Jing Xiangfeng
  0 siblings, 0 replies; 13+ messages in thread
From: Jing Xiangfeng @ 2020-07-17  8:22 UTC (permalink / raw)
  To: jbrunet, lgirdwood, broonie, perex, tiwai, khilman, kuninori.morimoto.gx
  Cc: alsa-devel, linux-arm-kernel, linux-amlogic, linux-kernel, jingxiangfeng

axg_card_add_tdm_loopback() misses to call kfree() in an error path. We
can use devm_kasprintf() to fix the issue, also improve maintainability.
So use it instead.

Fixes: c84836d7f650 ("ASoC: meson: axg-card: use modern dai_link style")
Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com>
---
 sound/soc/meson/axg-card.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/meson/axg-card.c b/sound/soc/meson/axg-card.c
index 89f7f64747cd..47f2d93224fe 100644
--- a/sound/soc/meson/axg-card.c
+++ b/sound/soc/meson/axg-card.c
@@ -116,7 +116,7 @@ static int axg_card_add_tdm_loopback(struct snd_soc_card *card,
 
 	lb = &card->dai_link[*index + 1];
 
-	lb->name = kasprintf(GFP_KERNEL, "%s-lb", pad->name);
+	lb->name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-lb", pad->name);
 	if (!lb->name)
 		return -ENOMEM;
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-08-17 17:49 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-17  8:22 [PATCH v2] ASoC: meson: fixes the missed kfree() for axg_card_add_tdm_loopback Jing Xiangfeng
2020-07-17  8:22 ` Jing Xiangfeng
2020-07-17  8:22 ` Jing Xiangfeng
2020-07-17  8:22 ` Jing Xiangfeng
2020-07-17  8:44 ` Jerome Brunet
2020-07-17  8:44   ` Jerome Brunet
2020-07-17  8:44   ` Jerome Brunet
2020-07-17  8:44   ` Jerome Brunet
2020-07-17 15:39 ` Mark Brown
2020-07-17 15:39   ` Mark Brown
2020-07-17 15:39   ` Mark Brown
2020-07-17 15:39   ` Mark Brown
2020-08-17 17:48 ` patchwork-bot+linux-amlogic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.