usb: gadget: mv_u3d_core: remove deprecated IRQF_DISABLED
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>
Sun, 6 Oct 2013 06:44:35 +0000 (08:44 +0200)
committerFelipe Balbi <balbi@ti.com>
Thu, 10 Oct 2013 14:40:31 +0000 (09:40 -0500)
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: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/mv_u3d_core.c

index 4d31177d5d994d512e2fc386228ad5d107554b21..234711eabea14be4259eee06e8bf08ef07588b3a 100644 (file)
@@ -1938,7 +1938,7 @@ static int mv_u3d_probe(struct platform_device *dev)
        }
        u3d->irq = r->start;
        if (request_irq(u3d->irq, mv_u3d_irq,
-               IRQF_DISABLED | IRQF_SHARED, driver_name, u3d)) {
+               IRQF_SHARED, driver_name, u3d)) {
                u3d->irq = 0;
                dev_err(&dev->dev, "Request irq %d for u3d failed\n",
                        u3d->irq);
This page took 0.024622 seconds and 5 git commands to generate.