Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 256689
b: refs/heads/master
c: 6dd599f
h: refs/heads/master
i:
  256687: cc0e073
v: v3
  • Loading branch information
David Jander authored and Grant Likely committed Jun 8, 2011
1 parent fdd39f6 commit 46018bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 17e8b42c17c3e9735ea03c4e6b67cedf5de170f4
refs/heads/master: 6dd599f8af0166805951f4421a78ba716d78321a
6 changes: 3 additions & 3 deletions trunk/drivers/gpio/gpio-pca953x.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ static irqreturn_t pca953x_irq_handler(int irq, void *devid)

do {
level = __ffs(pending);
generic_handle_irq(level + chip->irq_base);
handle_nested_irq(level + chip->irq_base);

pending &= ~(1 << level);
} while (pending);
Expand Down Expand Up @@ -485,8 +485,8 @@ static int pca953x_irq_setup(struct pca953x_chip *chip,

irq_clear_status_flags(irq, IRQ_NOREQUEST);
irq_set_chip_data(irq, chip);
irq_set_chip_and_handler(irq, &pca953x_irq_chip,
handle_simple_irq);
irq_set_chip(irq, &pca953x_irq_chip);
irq_set_nested_thread(irq, true);
#ifdef CONFIG_ARM
set_irq_flags(irq, IRQF_VALID);
#else
Expand Down

0 comments on commit 46018bc

Please sign in to comment.