[alsa-devel] [PATCH 3/3] ASoC: TWL4030: Module unloading fix
Call the snd_soc_free_pcm and snd_soc_dapm_free when the codec driver is unloaded.
Signed-off-by: Peter Ujfalusi peter.ujfalusi@nokia.com --- sound/soc/codecs/twl4030.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c index db24f83..ea370a4 100644 --- a/sound/soc/codecs/twl4030.c +++ b/sound/soc/codecs/twl4030.c @@ -1280,6 +1280,8 @@ static int twl4030_remove(struct platform_device *pdev) struct snd_soc_codec *codec = socdev->codec;
printk(KERN_INFO "TWL4030 Audio Codec remove\n"); + snd_soc_free_pcms(socdev); + snd_soc_dapm_free(socdev); kfree(codec);
return 0;
On Thu, Jan 08, 2009 at 03:52:43PM +0200, Peter Ujfalusi wrote:
Call the snd_soc_free_pcm and snd_soc_dapm_free when the codec driver is unloaded.
Signed-off-by: Peter Ujfalusi peter.ujfalusi@nokia.com
Applied, thanks. Might be worth having a look at the logging too...
participants (2)
-
Mark Brown
-
Peter Ujfalusi