Commit 81ceefa4 authored by Pramod Gurav's avatar Pramod Gurav Committed by Vinod Koul

dmaengine: qcom_bam_dma: Fix error path in probe function

Calls tasklet_kill() in error path of the probe function were missing.
Add the same in error path.
Signed-off-by: default avatarPramod Gurav <pramod.gurav@smartplayin.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent c517d838
...@@ -1113,7 +1113,7 @@ static int bam_dma_probe(struct platform_device *pdev) ...@@ -1113,7 +1113,7 @@ static int bam_dma_probe(struct platform_device *pdev)
if (!bdev->channels) { if (!bdev->channels) {
ret = -ENOMEM; ret = -ENOMEM;
goto err_disable_clk; goto err_tasklet_kill;
} }
/* allocate and initialize channels */ /* allocate and initialize channels */
...@@ -1125,7 +1125,7 @@ static int bam_dma_probe(struct platform_device *pdev) ...@@ -1125,7 +1125,7 @@ static int bam_dma_probe(struct platform_device *pdev)
ret = devm_request_irq(bdev->dev, bdev->irq, bam_dma_irq, ret = devm_request_irq(bdev->dev, bdev->irq, bam_dma_irq,
IRQF_TRIGGER_HIGH, "bam_dma", bdev); IRQF_TRIGGER_HIGH, "bam_dma", bdev);
if (ret) if (ret)
goto err_disable_clk; goto err_bam_channel_exit;
/* set max dma segment size */ /* set max dma segment size */
bdev->common.dev = bdev->dev; bdev->common.dev = bdev->dev;
...@@ -1133,7 +1133,7 @@ static int bam_dma_probe(struct platform_device *pdev) ...@@ -1133,7 +1133,7 @@ static int bam_dma_probe(struct platform_device *pdev)
ret = dma_set_max_seg_size(bdev->common.dev, BAM_MAX_DATA_SIZE); ret = dma_set_max_seg_size(bdev->common.dev, BAM_MAX_DATA_SIZE);
if (ret) { if (ret) {
dev_err(bdev->dev, "cannot set maximum segment size\n"); dev_err(bdev->dev, "cannot set maximum segment size\n");
goto err_disable_clk; goto err_bam_channel_exit;
} }
platform_set_drvdata(pdev, bdev); platform_set_drvdata(pdev, bdev);
...@@ -1157,7 +1157,7 @@ static int bam_dma_probe(struct platform_device *pdev) ...@@ -1157,7 +1157,7 @@ static int bam_dma_probe(struct platform_device *pdev)
ret = dma_async_device_register(&bdev->common); ret = dma_async_device_register(&bdev->common);
if (ret) { if (ret) {
dev_err(bdev->dev, "failed to register dma async device\n"); dev_err(bdev->dev, "failed to register dma async device\n");
goto err_disable_clk; goto err_bam_channel_exit;
} }
ret = of_dma_controller_register(pdev->dev.of_node, bam_dma_xlate, ret = of_dma_controller_register(pdev->dev.of_node, bam_dma_xlate,
...@@ -1169,8 +1169,14 @@ static int bam_dma_probe(struct platform_device *pdev) ...@@ -1169,8 +1169,14 @@ static int bam_dma_probe(struct platform_device *pdev)
err_unregister_dma: err_unregister_dma:
dma_async_device_unregister(&bdev->common); dma_async_device_unregister(&bdev->common);
err_bam_channel_exit:
for (i = 0; i < bdev->num_channels; i++)
tasklet_kill(&bdev->channels[i].vc.task);
err_tasklet_kill:
tasklet_kill(&bdev->task);
err_disable_clk: err_disable_clk:
clk_disable_unprepare(bdev->bamclk); clk_disable_unprepare(bdev->bamclk);
return ret; return ret;
} }
......
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