dect
/
linux-2.6
Archived
13
0
Fork 0

[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: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Russell King 2008-04-20 16:40:47 +01:00 committed by Russell King
parent cf816ecb53
commit d8d9075cf6
1 changed files with 2 additions and 3 deletions

View File

@ -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)