]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
dmaengine: tegra-apb: Free interrupts before killing tasklets
authorJon Hunter <jonathanh@nvidia.com>
Fri, 13 Nov 2015 16:39:43 +0000 (16:39 +0000)
committerVinod Koul <vinod.koul@intel.com>
Sat, 5 Dec 2015 10:43:08 +0000 (16:13 +0530)
On probe failure or driver removal, before killing any tasklets, ensure
that the channel interrupt is freed to ensure that another channel
interrupt cannot occur and schedule the tasklet again.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/tegra20-apb-dma.c

index 754c1f54d4fef6f5815f308ef355b1c3d2922885..935da8192f59cc18e3353ba4668126c52f1d2673 100644 (file)
@@ -1396,8 +1396,7 @@ static int tegra_dma_probe(struct platform_device *pdev)
                }
                tdc->irq = res->start;
                snprintf(tdc->name, sizeof(tdc->name), "apbdma.%d", i);
-               ret = devm_request_irq(&pdev->dev, tdc->irq,
-                               tegra_dma_isr, 0, tdc->name, tdc);
+               ret = request_irq(tdc->irq, tegra_dma_isr, 0, tdc->name, tdc);
                if (ret) {
                        dev_err(&pdev->dev,
                                "request_irq failed with err %d channel %d\n",
@@ -1478,6 +1477,8 @@ static int tegra_dma_probe(struct platform_device *pdev)
 err_irq:
        while (--i >= 0) {
                struct tegra_dma_channel *tdc = &tdma->channels[i];
+
+               free_irq(tdc->irq, tdc);
                tasklet_kill(&tdc->tasklet);
        }
 
@@ -1497,6 +1498,7 @@ static int tegra_dma_remove(struct platform_device *pdev)
 
        for (i = 0; i < tdma->chip_data->nr_channels; ++i) {
                tdc = &tdma->channels[i];
+               free_irq(tdc->irq, tdc);
                tasklet_kill(&tdc->tasklet);
        }