提交 d8d9075c 编写于 作者: R Russell King 提交者: Russell King

[ARM] fix lh7a40x/kev7a400 build

arch/arm/mach-lh7a40x/arch-kev7a400.c: In function `kev7a400_cpld_handler':
arch/arm/mach-lh7a40x/arch-kev7a400.c:80: error: structure has no member named `handle'
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 cf816ecb
......@@ -75,10 +75,9 @@ static void kev7a400_cpld_handler (unsigned int irq, struct irq_desc *desc)
{
u32 mask = CPLD_LATCHED_INTS;
irq = IRQ_KEV7A400_CPLD;
for (; mask; mask >>= 1, ++irq) {
for (; mask; mask >>= 1, ++irq)
if (mask & 1)
desc[irq].handle (irq, desc);
}
desc_handle_irq(irq, desc);
}
void __init lh7a40x_init_board_irq (void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册