diff options
| author | Axel Lin <axel.lin@gmail.com> | 2010-11-24 03:44:23 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-11-24 06:31:18 -0500 |
| commit | d6f443ae4c1d54379ad5953d7bcb89a63387184d (patch) | |
| tree | 218a638efc5210d39f2d780114e6e0d4a5a49815 | |
| parent | 59e21020284e80aa6183baf9f7948bbe9801a812 (diff) | |
ASoC: nuc900-ac97: fix a memory leak
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Acked-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
| -rw-r--r-- | sound/soc/nuc900/nuc900-ac97.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/nuc900/nuc900-ac97.c b/sound/soc/nuc900/nuc900-ac97.c index 293dc748797..e00e39dd657 100644 --- a/sound/soc/nuc900/nuc900-ac97.c +++ b/sound/soc/nuc900/nuc900-ac97.c | |||
| @@ -384,7 +384,6 @@ out0: | |||
| 384 | 384 | ||
| 385 | static int __devexit nuc900_ac97_drvremove(struct platform_device *pdev) | 385 | static int __devexit nuc900_ac97_drvremove(struct platform_device *pdev) |
| 386 | { | 386 | { |
| 387 | |||
| 388 | snd_soc_unregister_dai(&pdev->dev); | 387 | snd_soc_unregister_dai(&pdev->dev); |
| 389 | 388 | ||
| 390 | clk_put(nuc900_ac97_data->clk); | 389 | clk_put(nuc900_ac97_data->clk); |
| @@ -392,6 +391,7 @@ static int __devexit nuc900_ac97_drvremove(struct platform_device *pdev) | |||
| 392 | release_mem_region(nuc900_ac97_data->res->start, | 391 | release_mem_region(nuc900_ac97_data->res->start, |
| 393 | resource_size(nuc900_ac97_data->res)); | 392 | resource_size(nuc900_ac97_data->res)); |
| 394 | 393 | ||
| 394 | kfree(nuc900_ac97_data); | ||
| 395 | nuc900_ac97_data = NULL; | 395 | nuc900_ac97_data = NULL; |
| 396 | 396 | ||
| 397 | return 0; | 397 | return 0; |
