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

Commit fe576a58 authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Greg Kroah-Hartman
Browse files

w1: omap-hdq: 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>
Acked-by: default avatarEvgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 813b4650
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -577,8 +577,7 @@ static int omap_hdq_probe(struct platform_device *pdev)
		goto err_irq;
	}

	ret = devm_request_irq(dev, irq, hdq_isr, IRQF_DISABLED,
			"omap_hdq", hdq_data);
	ret = devm_request_irq(dev, irq, hdq_isr, 0, "omap_hdq", hdq_data);
	if (ret < 0) {
		dev_dbg(&pdev->dev, "could not request irq\n");
		goto err_irq;