Commit dce7c756 authored by Sahitya Tummala's avatar Sahitya Tummala Committed by Chris Ball

mmc: msm_sdcc: Handle error cases in probe

Signed-off-by: default avatarSahitya Tummala <stummala@codeaurora.org>
Signed-off-by: default avatarDavid Brown <davidb@codeaurora.org>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent e91957e7
...@@ -1215,7 +1215,7 @@ msmsdcc_probe(struct platform_device *pdev) ...@@ -1215,7 +1215,7 @@ msmsdcc_probe(struct platform_device *pdev)
host->base = ioremap(memres->start, PAGE_SIZE); host->base = ioremap(memres->start, PAGE_SIZE);
if (!host->base) { if (!host->base) {
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto host_free;
} }
host->cmd_irqres = cmd_irqres; host->cmd_irqres = cmd_irqres;
...@@ -1230,13 +1230,15 @@ msmsdcc_probe(struct platform_device *pdev) ...@@ -1230,13 +1230,15 @@ msmsdcc_probe(struct platform_device *pdev)
/* /*
* Setup DMA * Setup DMA
*/ */
msmsdcc_init_dma(host); ret = msmsdcc_init_dma(host);
if (ret)
goto ioremap_free;
/* Get our clocks */ /* Get our clocks */
host->pclk = clk_get(&pdev->dev, "sdc_pclk"); host->pclk = clk_get(&pdev->dev, "sdc_pclk");
if (IS_ERR(host->pclk)) { if (IS_ERR(host->pclk)) {
ret = PTR_ERR(host->pclk); ret = PTR_ERR(host->pclk);
goto host_free; goto dma_free;
} }
host->clk = clk_get(&pdev->dev, "sdc_clk"); host->clk = clk_get(&pdev->dev, "sdc_clk");
...@@ -1377,6 +1379,12 @@ msmsdcc_probe(struct platform_device *pdev) ...@@ -1377,6 +1379,12 @@ msmsdcc_probe(struct platform_device *pdev)
clk_put(host->clk); clk_put(host->clk);
pclk_put: pclk_put:
clk_put(host->pclk); clk_put(host->pclk);
dma_free:
dma_free_coherent(NULL, sizeof(struct msmsdcc_nc_dmadata),
host->dma.nc, host->dma.nc_busaddr);
ioremap_free:
tasklet_kill(&host->dma_tlet);
iounmap(host->base);
host_free: host_free:
mmc_free_host(mmc); mmc_free_host(mmc);
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment