summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin2010-11-23 08:56:21 +0100
committerMark Brown2010-11-23 15:29:51 +0100
commitbc5954f00e80c55140f546c80f34a8660bdd2c5f (patch)
treefb9b3737fefc901c4df0b55c631efdbdcd7d9018
parentASoC: Do not update the cache if write to hardware failed (diff)
downloadkernel-qcow2-linux-bc5954f00e80c55140f546c80f34a8660bdd2c5f.tar.gz
kernel-qcow2-linux-bc5954f00e80c55140f546c80f34a8660bdd2c5f.tar.xz
kernel-qcow2-linux-bc5954f00e80c55140f546c80f34a8660bdd2c5f.zip
ASoC: max98088 - fix a memory leak
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/max98088.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/codecs/max98088.c b/sound/soc/codecs/max98088.c
index 470cb93b1d1f..d63e28773eb1 100644
--- a/sound/soc/codecs/max98088.c
+++ b/sound/soc/codecs/max98088.c
@@ -2019,7 +2019,10 @@ err_access:
static int max98088_remove(struct snd_soc_codec *codec)
{
+ struct max98088_priv *max98088 = snd_soc_codec_get_drvdata(codec);
+
max98088_set_bias_level(codec, SND_SOC_BIAS_OFF);
+ kfree(max98088->eq_texts);
return 0;
}