diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-13 07:10:51 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-10-13 20:21:35 +0530 |
commit | 174b537ac2b8fe1bac31039185b80f873716c5a1 (patch) | |
tree | 2b0361fa5e7986319ccec1420994ed1101ac067b /drivers/dma/amba-pl08x.c | |
parent | 05864648f39a3b2ee8311b44dfd4b06cbb904414 (diff) | |
download | linux-174b537ac2b8fe1bac31039185b80f873716c5a1.tar.bz2 |
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.c | 3 |
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]); |