Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 354949
b: refs/heads/master
c: ae3b321
h: refs/heads/master
i:
  354947: 2b336b6
v: v3
  • Loading branch information
Chanwoo Choi committed Jan 15, 2013
1 parent da5d5c8 commit 9114110
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 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: 297620fd1e14edf5fefa1736f873b9228336eee1
refs/heads/master: ae3b3215f8e16ee8234024c77787bac9befb4f4c
4 changes: 2 additions & 2 deletions trunk/drivers/extcon/extcon-max77693.c
Original file line number Diff line number Diff line change
Expand Up @@ -1006,13 +1006,13 @@ static int max77693_muic_probe(struct platform_device *pdev)

ret = request_threaded_irq(virq, NULL,
max77693_muic_irq_handler,
IRQF_ONESHOT, muic_irq->name, info);
IRQF_NO_SUSPEND,
muic_irq->name, info);
if (ret) {
dev_err(&pdev->dev,
"failed: irq request (IRQ: %d,"
" error :%d)\n",
muic_irq->irq, ret);

goto err_irq;
}
}
Expand Down
6 changes: 4 additions & 2 deletions trunk/drivers/extcon/extcon-max8997.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,10 @@ static int max8997_muic_probe(struct platform_device *pdev)
}
muic_irq->virq = virq;

ret = request_threaded_irq(virq, NULL, max8997_muic_irq_handler,
0, muic_irq->name, info);
ret = request_threaded_irq(virq, NULL,
max8997_muic_irq_handler,
IRQF_NO_SUSPEND,
muic_irq->name, info);
if (ret) {
dev_err(&pdev->dev,
"failed: irq request (IRQ: %d,"
Expand Down

0 comments on commit 9114110

Please sign in to comment.