summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin2010-11-23 08:57:49 +0100
committerMark Brown2010-11-23 15:30:00 +0100
commitcd70978cb59fd20dccdfc790ea8bb308c2dfd1d6 (patch)
tree63a0fdde0121795074b9ee6c0d16e6742b33dc47
parentASoC: max98088 - fix a memory leak (diff)
downloadkernel-qcow2-linux-cd70978cb59fd20dccdfc790ea8bb308c2dfd1d6.tar.gz
kernel-qcow2-linux-cd70978cb59fd20dccdfc790ea8bb308c2dfd1d6.tar.xz
kernel-qcow2-linux-cd70978cb59fd20dccdfc790ea8bb308c2dfd1d6.zip
ASoC: wm8904 - fix memory leaks
Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--sound/soc/codecs/wm8904.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c
index 33be84e506ea..fca60a0b57b8 100644
--- a/sound/soc/codecs/wm8904.c
+++ b/sound/soc/codecs/wm8904.c
@@ -2498,6 +2498,8 @@ static int wm8904_remove(struct snd_soc_codec *codec)
wm8904_set_bias_level(codec, SND_SOC_BIAS_OFF);
regulator_bulk_free(ARRAY_SIZE(wm8904->supplies), wm8904->supplies);
+ kfree(wm8904->retune_mobile_texts);
+ kfree(wm8904->drc_texts);
return 0;
}