commit | 58499906c8e9a87b4b65435effca733802c9b57d | [log] [tgz] |
---|---|---|
author | Axel Lin <axel.lin@gmail.com> | Thu Jul 14 18:14:46 2011 +0800 |
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | Thu Jul 14 20:04:26 2011 +0900 |
tree | 97da5a3db1649ec84ec78f8d69536dc0bb0b211b | |
parent | 3b1af3f8c8f3298170fcbf6ef7971c3aeccc4318 [diff] [blame] |
ASoC: wm8900: fix a memory leak if wm8900_set_fll fails Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
diff --git a/sound/soc/codecs/wm8900.c b/sound/soc/codecs/wm8900.c index 449ea09..082040e 100644 --- a/sound/soc/codecs/wm8900.c +++ b/sound/soc/codecs/wm8900.c
@@ -1167,6 +1167,7 @@ ret = wm8900_set_fll(codec, 0, fll_in, fll_out); if (ret != 0) { dev_err(codec->dev, "Failed to restart FLL\n"); + kfree(cache); return ret; } }