Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329981
b: refs/heads/master
c: 619a1e3
h: refs/heads/master
i:
  329979: 90ff909
v: v3
  • Loading branch information
Fengguang Wu authored and Samuel Ortiz committed Sep 19, 2012
1 parent c00b4e3 commit 62da004
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 09e09069f2564af7c2b1beac46e6e439d4ab61cf
refs/heads/master: 619a1e31f2b190814fcb088c8f2281461fafd396
4 changes: 2 additions & 2 deletions trunk/drivers/mfd/max8925-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ static int max8925_irq_init(struct max8925_chip *chip, int irq,
goto tsc_irq;
}

ret = request_threaded_irq(irq, NULL, max8925_irq, flags,
ret = request_threaded_irq(irq, NULL, max8925_irq, flags | IRQF_ONESHOT,
"max8925", chip);
if (ret) {
dev_err(chip->dev, "Failed to request core IRQ: %d\n", ret);
Expand All @@ -565,7 +565,7 @@ static int max8925_irq_init(struct max8925_chip *chip, int irq,
chip->tsc_irq = pdata->tsc_irq;

ret = request_threaded_irq(chip->tsc_irq, NULL, max8925_tsc_irq,
flags, "max8925-tsc", chip);
flags | IRQF_ONESHOT, "max8925-tsc", chip);
if (ret) {
dev_err(chip->dev, "Failed to request TSC IRQ: %d\n", ret);
chip->tsc_irq = 0;
Expand Down

0 comments on commit 62da004

Please sign in to comment.