diff options
author | Vinod Koul <vinod.koul@intel.com> | 2016-07-28 06:40:37 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-07-28 06:40:37 +0200 |
commit | 4bb0439626983fdde5af3ce970bd0ba2070f5378 (patch) | |
tree | 081166e9a6bd98eef39f41171f2e2ef014413bb3 /drivers/dma/omap-dma.c | |
parent | dmaengine: k3dma: add missing clk_disable_unprepare() on error in k3_dma_probe() (diff) | |
parent | dmaengine: ioat: statify symbol (diff) | |
download | linux-4bb0439626983fdde5af3ce970bd0ba2070f5378.tar.xz linux-4bb0439626983fdde5af3ce970bd0ba2070f5378.zip |
Merge branch 'topic/dmaengine_cleanups' into for-linus
Diffstat (limited to 'drivers/dma/omap-dma.c')
-rw-r--r-- | drivers/dma/omap-dma.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c index 2e0d49bcfd8a..d99ca2b511c4 100644 --- a/drivers/dma/omap-dma.c +++ b/drivers/dma/omap-dma.c @@ -1292,10 +1292,14 @@ static int omap_dma_probe(struct platform_device *pdev) static int omap_dma_remove(struct platform_device *pdev) { struct omap_dmadev *od = platform_get_drvdata(pdev); + int irq; if (pdev->dev.of_node) of_dma_controller_free(pdev->dev.of_node); + irq = platform_get_irq(pdev, 1); + devm_free_irq(&pdev->dev, irq, od); + dma_async_device_unregister(&od->ddev); if (!od->legacy) { |