aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2013-08-17 17:13:00 -0400
committerMark Brown <broonie@linaro.org>2013-08-20 06:47:04 -0400
commit0783e648988a2ccef6eac9b1c376e7832e09cd94 (patch)
tree3312f0cae5972ddef3c9cc6c29873123f53b4ece /sound/soc/fsl
parent3c1c32d3765876b72570966c819fac4b8c646394 (diff)
ASoC: fsl: fsl_ssi: Fix the order of resources removal
In fsl_ssi_remove() we need to remove the resources in the opposite order that they were acquired in probe. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r--sound/soc/fsl/fsl_ssi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c
index 0c072ff10875..3168998dcf1d 100644
--- a/sound/soc/fsl/fsl_ssi.c
+++ b/sound/soc/fsl/fsl_ssi.c
@@ -928,14 +928,14 @@ static int fsl_ssi_remove(struct platform_device *pdev)
928 928
929 if (!ssi_private->new_binding) 929 if (!ssi_private->new_binding)
930 platform_device_unregister(ssi_private->pdev); 930 platform_device_unregister(ssi_private->pdev);
931 if (ssi_private->ssi_on_imx) { 931 if (ssi_private->ssi_on_imx)
932 imx_pcm_dma_exit(pdev); 932 imx_pcm_dma_exit(pdev);
933 clk_disable_unprepare(ssi_private->clk);
934 }
935 snd_soc_unregister_component(&pdev->dev); 933 snd_soc_unregister_component(&pdev->dev);
934 dev_set_drvdata(&pdev->dev, NULL);
936 device_remove_file(&pdev->dev, &ssi_private->dev_attr); 935 device_remove_file(&pdev->dev, &ssi_private->dev_attr);
936 if (ssi_private->ssi_on_imx)
937 clk_disable_unprepare(ssi_private->clk);
937 irq_dispose_mapping(ssi_private->irq); 938 irq_dispose_mapping(ssi_private->irq);
938 dev_set_drvdata(&pdev->dev, NULL);
939 939
940 return 0; 940 return 0;
941} 941}