[alsa-devel] [PATCH] ASoC: free socdev if init_card() fails in wm9705_soc_probe()

Roel Kluin roel.kluin at gmail.com
Sat Aug 22 21:24:24 CEST 2009


Free socdev if snd_soc_init_card() fails.

Signed-off-by: Roel Kluin <roel.kluin at gmail.com>
---
It doesn't seem to happen in snd_soc_init_card(), but please review.

diff --git a/sound/soc/codecs/wm9705.c b/sound/soc/codecs/wm9705.c
index fa88b46..e7d2840 100644
--- a/sound/soc/codecs/wm9705.c
+++ b/sound/soc/codecs/wm9705.c
@@ -406,7 +406,7 @@ static int wm9705_soc_probe(struct platform_device *pdev)
 	ret = snd_soc_init_card(socdev);
 	if (ret < 0) {
 		printk(KERN_ERR "wm9705: failed to register card\n");
-		goto pcm_err;
+		goto reset_err;
 	}
 
 	return 0;


More information about the Alsa-devel mailing list