diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-02-08 15:07:16 -0500 |
---|---|---|
committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-02-24 04:06:58 -0500 |
commit | 6574305b0ed32f286dcebd653a2f3ba4e421f06c (patch) | |
tree | 9e8f3ce3b34885de2fd45d884b72a5daa3d49cff /arch/arm/plat-mxc | |
parent | 3621f188b945a9f9bc1387115834041b7a4619e0 (diff) |
arm/imx/gpio: remove a BUG_ON in hot path
Now if the problem occurs that triggered the BUG_ON before, the machine
runs in a NULL pointer dereference. So it wouldn't be much harder now
to debug the situation if it occured.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r-- | arch/arm/plat-mxc/gpio.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/plat-mxc/gpio.c b/arch/arm/plat-mxc/gpio.c index 0b11554dadac..70b23893f094 100644 --- a/arch/arm/plat-mxc/gpio.c +++ b/arch/arm/plat-mxc/gpio.c | |||
@@ -162,8 +162,6 @@ static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat) | |||
162 | while (irq_stat != 0) { | 162 | while (irq_stat != 0) { |
163 | int irqoffset = fls(irq_stat) - 1; | 163 | int irqoffset = fls(irq_stat) - 1; |
164 | 164 | ||
165 | BUG_ON(!(irq_desc[gpio_irq_no_base + irqoffset].handle_irq)); | ||
166 | |||
167 | if (port->both_edges & (1 << irqoffset)) | 165 | if (port->both_edges & (1 << irqoffset)) |
168 | mxc_flip_edge(port, irqoffset); | 166 | mxc_flip_edge(port, irqoffset); |
169 | 167 | ||