Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328497
b: refs/heads/master
c: 95f0bc9
h: refs/heads/master
i:
  328495: eccc3f1
v: v3
  • Loading branch information
Linus Walleij committed Sep 28, 2012
1 parent 7bc70f2 commit a5b8ba8
Show file tree
Hide file tree
Showing 2 changed files with 2 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: 6fd4011e165e4a28c06a044c919161e657138181
refs/heads/master: 95f0bc9bf0db600fbefda9d2157b95d5ff55e783
4 changes: 1 addition & 3 deletions trunk/drivers/pinctrl/pinctrl-nomadik.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,16 +827,14 @@ static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
{
struct nmk_gpio_chip *nmk_chip;
struct irq_chip *host_chip = irq_get_chip(irq);
unsigned int first_irq;

chained_irq_enter(host_chip, desc);

nmk_chip = irq_get_handler_data(irq);
first_irq = nmk_chip->domain->revmap_data.legacy.first_irq;
while (status) {
int bit = __ffs(status);

generic_handle_irq(first_irq + bit);
generic_handle_irq(irq_find_mapping(nmk_chip->domain, bit));
status &= ~BIT(bit);
}

Expand Down

0 comments on commit a5b8ba8

Please sign in to comment.