Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc807576 authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Felipe Balbi
Browse files

usb: gadget: mv_u3d_core: 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: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 7fc031e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1938,7 +1938,7 @@ static int mv_u3d_probe(struct platform_device *dev)
	}
	}
	u3d->irq = r->start;
	u3d->irq = r->start;
	if (request_irq(u3d->irq, mv_u3d_irq,
	if (request_irq(u3d->irq, mv_u3d_irq,
		IRQF_DISABLED | IRQF_SHARED, driver_name, u3d)) {
		IRQF_SHARED, driver_name, u3d)) {
		u3d->irq = 0;
		u3d->irq = 0;
		dev_err(&dev->dev, "Request irq %d for u3d failed\n",
		dev_err(&dev->dev, "Request irq %d for u3d failed\n",
			u3d->irq);
			u3d->irq);