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>
This commit is contained in:
Michael Opdenacker
2013-10-13 07:10:51 +02:00
committed by Vinod Koul
parent 05864648f3
commit 174b537ac2
5 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -693,7 +693,7 @@ static int k3_dma_probe(struct platform_device *op)
irq = platform_get_irq(op, 0);
ret = devm_request_irq(&op->dev, irq,
k3_dma_int_handler, IRQF_DISABLED, DRIVER_NAME, d);
k3_dma_int_handler, 0, DRIVER_NAME, d);
if (ret)
return ret;