Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330498
b: refs/heads/master
c: a2778b0
h: refs/heads/master
v: v3
  • Loading branch information
Fengguang Wu authored and Anton Vorontsov committed Sep 20, 2012
1 parent fb2d273 commit ebd4f43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7c577c0d1ebed58648afb26e7c03f023fa82098e
refs/heads/master: a2778b0fe15d7adfe65b092ae842510c6c031370
5 changes: 3 additions & 2 deletions trunk/drivers/power/twl4030_charger.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,15 +534,16 @@ static int __init twl4030_bci_probe(struct platform_device *pdev)
}

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) {
dev_err(&pdev->dev, "could not request irq %d, status %d\n",
bci->irq_chg, ret);
goto fail_chg_irq;
}

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) {
dev_err(&pdev->dev, "could not request irq %d, status %d\n",
bci->irq_bci, ret);
Expand Down

0 comments on commit ebd4f43

Please sign in to comment.