summaryrefslogtreecommitdiffstats
path: root/drivers/dma/amba-pl08x.c
diff options
context:
space:
mode:
authorMichael Opdenacker2013-10-13 07:10:51 +0200
committerVinod Koul2013-10-13 16:51:35 +0200
commit174b537ac2b8fe1bac31039185b80f873716c5a1 (patch)
tree2b0361fa5e7986319ccec1420994ed1101ac067b /drivers/dma/amba-pl08x.c
parentdma: coh901318: remove deprecated IRQF_DISABLED (diff)
downloadkernel-qcow2-linux-174b537ac2b8fe1bac31039185b80f873716c5a1.tar.gz
kernel-qcow2-linux-174b537ac2b8fe1bac31039185b80f873716c5a1.tar.xz
kernel-qcow2-linux-174b537ac2b8fe1bac31039185b80f873716c5a1.zip
dma: misc: remove deprecated IRQF_DISABLED
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/amba-pl08x.c')
-rw-r--r--drivers/dma/amba-pl08x.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c
index fce46c5bf1c7..9b5025777ac8 100644
--- a/drivers/dma/amba-pl08x.c
+++ b/drivers/dma/amba-pl08x.c
@@ -2133,8 +2133,7 @@ static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
- ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
- DRIVER_NAME, pl08x);
+ ret = request_irq(adev->irq[0], pl08x_irq, 0, DRIVER_NAME, pl08x);
if (ret) {
dev_err(&adev->dev, "%s failed to request interrupt %d\n",
__func__, adev->irq[0]);