Commit a2778b0f authored by Fengguang Wu's avatar Fengguang Wu Committed by Anton Vorontsov

twl4030_charger: Use IRQF_ONESHOT

Generated by: scripts/coccinelle/misc/irqf_oneshot.cocci

Make sure threaded IRQs without a primary handler are always request with IRQF_ONESHOT
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Acked-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarAnton Vorontsov <anton.vorontsov@linaro.org>
parent 7c577c0d
...@@ -534,7 +534,8 @@ static int __init twl4030_bci_probe(struct platform_device *pdev) ...@@ -534,7 +534,8 @@ static int __init twl4030_bci_probe(struct platform_device *pdev)
} }
ret = request_threaded_irq(bci->irq_chg, NULL, ret = request_threaded_irq(bci->irq_chg, NULL,
twl4030_charger_interrupt, 0, pdev->name, bci); twl4030_charger_interrupt, IRQF_ONESHOT, pdev->name,
bci);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "could not request irq %d, status %d\n", dev_err(&pdev->dev, "could not request irq %d, status %d\n",
bci->irq_chg, ret); bci->irq_chg, ret);
...@@ -542,7 +543,7 @@ static int __init twl4030_bci_probe(struct platform_device *pdev) ...@@ -542,7 +543,7 @@ static int __init twl4030_bci_probe(struct platform_device *pdev)
} }
ret = request_threaded_irq(bci->irq_bci, NULL, ret = request_threaded_irq(bci->irq_bci, NULL,
twl4030_bci_interrupt, 0, pdev->name, bci); twl4030_bci_interrupt, IRQF_ONESHOT, pdev->name, bci);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "could not request irq %d, status %d\n", dev_err(&pdev->dev, "could not request irq %d, status %d\n",
bci->irq_bci, ret); bci->irq_bci, ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment