From: Michael Opdenacker Date: Sun, 13 Oct 2013 05:00:00 +0000 (+0200) Subject: dma: coh901318: remove deprecated IRQF_DISABLED X-Git-Tag: upstream/snapshot3+hdmi~3918^2~20^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05864648f39a3b2ee8311b44dfd4b06cbb904414;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git dma: coh901318: 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 Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c index 31011d2..3025b91 100644 --- a/drivers/dma/coh901318.c +++ b/drivers/dma/coh901318.c @@ -2694,7 +2694,7 @@ static int __init coh901318_probe(struct platform_device *pdev) if (irq < 0) return irq; - err = devm_request_irq(&pdev->dev, irq, dma_irq_handler, IRQF_DISABLED, + err = devm_request_irq(&pdev->dev, irq, dma_irq_handler, 0, "coh901318", base); if (err) return err;