Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 326701
b: refs/heads/master
c: 0d2ee5d
h: refs/heads/master
i:
  326699: 6f3c2c0
v: v3
  • Loading branch information
Chao Xie authored and Haojian Zhuang committed Aug 16, 2012
1 parent 5c4caf5 commit 770b6c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cd0a4a9503345c7076978ecc81c38a1c61730bfe
refs/heads/master: 0d2ee5d773c209504db643ec4d4b9f3624a6663f
7 changes: 7 additions & 0 deletions trunk/drivers/gpio/gpio-pxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#include <linux/syscore_ops.h>
#include <linux/slab.h>

#include <asm/mach/irq.h>

#include <mach/irqs.h>

/*
Expand Down Expand Up @@ -331,6 +333,9 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
struct pxa_gpio_chip *c;
int loop, gpio, gpio_base, n;
unsigned long gedr;
struct irq_chip *chip = irq_desc_get_chip(desc);

chained_irq_enter(chip, desc);

do {
loop = 0;
Expand All @@ -350,6 +355,8 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
}
}
} while (loop);

chained_irq_exit(chip, desc);
}

static void pxa_ack_muxed_gpio(struct irq_data *d)
Expand Down

0 comments on commit 770b6c3

Please sign in to comment.