Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328466
b: refs/heads/master
c: d724f1c
h: refs/heads/master
v: v3
  • Loading branch information
Wei Yongjun authored and Linus Walleij committed Sep 18, 2012
1 parent 67131ad commit 328282b
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: 939d902d0de58982fc95b04c5cd37c5e30ffe46f
refs/heads/master: d724f1c9c3c7dee420b8d778ee53207ef3c17120
4 changes: 1 addition & 3 deletions trunk/drivers/gpio/gpio-pxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,12 +413,10 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
gedr = gedr & c->irq_mask;
writel_relaxed(gedr, c->regbase + GEDR_OFFSET);

n = find_first_bit(&gedr, BITS_PER_LONG);
while (n < BITS_PER_LONG) {
for_each_set_bit(n, &gedr, BITS_PER_LONG) {
loop = 1;

generic_handle_irq(gpio_to_irq(gpio_base + n));
n = find_next_bit(&gedr, BITS_PER_LONG, n + 1);
}
}
} while (loop);
Expand Down

0 comments on commit 328282b

Please sign in to comment.