Commit 0d2ee5d7 authored by Chao Xie's avatar Chao Xie Committed by Haojian Zhuang

gpio: pxa: add chain_eneter and chain_exit for irq handler

Signed-off-by: default avatarChao Xie <xiechao.mail@gmail.com>
Signed-off-by: default avatarHaojian Zhuang <haojian.zhuang@gmail.com>
parent cd0a4a95
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#include <linux/syscore_ops.h> #include <linux/syscore_ops.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <asm/mach/irq.h>
#include <mach/irqs.h> #include <mach/irqs.h>
/* /*
...@@ -331,6 +333,9 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc) ...@@ -331,6 +333,9 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
struct pxa_gpio_chip *c; struct pxa_gpio_chip *c;
int loop, gpio, gpio_base, n; int loop, gpio, gpio_base, n;
unsigned long gedr; unsigned long gedr;
struct irq_chip *chip = irq_desc_get_chip(desc);
chained_irq_enter(chip, desc);
do { do {
loop = 0; loop = 0;
...@@ -350,6 +355,8 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc) ...@@ -350,6 +355,8 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irq_desc *desc)
} }
} }
} while (loop); } while (loop);
chained_irq_exit(chip, desc);
} }
static void pxa_ack_muxed_gpio(struct irq_data *d) static void pxa_ack_muxed_gpio(struct irq_data *d)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment