mirror of https://gitee.com/openkylin/linux.git
arm/imx: use generic_handle_irq instead of open-coding it
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
This commit is contained in:
parent
3d40f7fef4
commit
3244c3e779
|
@ -171,8 +171,7 @@ static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
|
|||
if (port->both_edges & (1 << (gpio & 31)))
|
||||
mxc_flip_edge(port, gpio);
|
||||
|
||||
irq_desc[gpio_irq_no].handle_irq(gpio_irq_no,
|
||||
&irq_desc[gpio_irq_no]);
|
||||
generic_handle_irq(gpio_irq_no);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue