diff options
| author | 2018-06-04 10:27:53 +0530 | |
|---|---|---|
| committer | 2018-06-04 10:27:53 +0530 | |
| commit | 75abeb6b7239341462d45b95246a4417ffa60656 (patch) | |
| tree | fab639f4da5afd1c971de4b64c346036c426dc38 | |
| parent | Merge branch 'topic/at' into for-linus (diff) | |
| parent | dmaengine: axi-dmac: Request IRQ with IRQF_SHARED (diff) | |
Merge branch 'topic/axi' into for-linus
| -rw-r--r-- | drivers/dma/dma-axi-dmac.c | 2 |
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; |
