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: Michael Opdenacker <michael.opdenacker@free-electrons.com> Acked-by: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
813b4650dd
commit
fe576a580f
1 changed files with 1 additions and 2 deletions
|
@ -577,8 +577,7 @@ static int omap_hdq_probe(struct platform_device *pdev)
|
||||||
goto err_irq;
|
goto err_irq;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = devm_request_irq(dev, irq, hdq_isr, IRQF_DISABLED,
|
ret = devm_request_irq(dev, irq, hdq_isr, 0, "omap_hdq", hdq_data);
|
||||||
"omap_hdq", hdq_data);
|
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_dbg(&pdev->dev, "could not request irq\n");
|
dev_dbg(&pdev->dev, "could not request irq\n");
|
||||||
goto err_irq;
|
goto err_irq;
|
||||||
|
|
Loading…
Add table
Reference in a new issue