[alsa-devel] [RFC][PATCH] ASoC: remove codec from list if registration failed
8 Mar
2013
8 Mar
'13
2:42 a.m.
Current snd_soc_register_codec() adds codec to list, and calls snd_soc_register_dais(). But, this listed codec should be removed if dais registration was failed.
Signed-off-by: Kuninori Morimoto kuninori.morimoto.gx@renesas.com ---
If my understanding is correct...
sound/soc/soc-core.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 1ac96df..38d6182 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -4097,6 +4097,10 @@ int snd_soc_register_codec(struct device *dev, return 0;
fail_codec_name: + mutex_lock(&client_mutex); + list_del(&codec->list); + mutex_unlock(&client_mutex); + kfree(codec->name); fail_codec: kfree(codec);
--
1.7.9.5
4266
Age (days ago)
4270
Last active (days ago)
1 comments
2 participants
participants (2)
-
Kuninori Morimoto
-
Mark Brown