aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorVinod Koul <vkoul@kernel.org>2018-06-04 10:27:53 +0530
committerVinod Koul <vkoul@kernel.org>2018-06-04 10:27:53 +0530
commit75abeb6b7239341462d45b95246a4417ffa60656 (patch)
treefab639f4da5afd1c971de4b64c346036c426dc38 /drivers/dma
parentMerge branch 'topic/at' into for-linus (diff)
parentdmaengine: axi-dmac: Request IRQ with IRQF_SHARED (diff)
downloadlinux-dev-75abeb6b7239341462d45b95246a4417ffa60656.tar.xz
linux-dev-75abeb6b7239341462d45b95246a4417ffa60656.zip
Merge branch 'topic/axi' into for-linus
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/dma-axi-dmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dma-axi-dmac.c b/drivers/dma/dma-axi-dmac.c
index 2419fe524daa..15b2453d2647 100644
--- a/drivers/dma/dma-axi-dmac.c
+++ b/drivers/dma/dma-axi-dmac.c
@@ -687,7 +687,7 @@ static int axi_dmac_probe(struct platform_device *pdev)
if (ret)
goto err_unregister_device;
- ret = request_irq(dmac->irq, axi_dmac_interrupt_handler, 0,
+ ret = request_irq(dmac->irq, axi_dmac_interrupt_handler, IRQF_SHARED,
dev_name(&pdev->dev), dmac);
if (ret)
goto err_unregister_of;