diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-24 08:36:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-24 08:36:11 -0700 |
commit | 8fa82790fb9dfe57aeafc8de6b6a5c1df63efa06 (patch) | |
tree | a5fd9796af13c084be5d6d5924c3c3430b1866b8 /arch/arm/mach-lh7a40x/arch-kev7a400.c | |
parent | 2444e56b0c08e6f3e3877583841a1213e3263d98 (diff) | |
parent | 4a1fd556c1f1fbd6d9d6739efec042324732b697 (diff) | |
download | linux-8fa82790fb9dfe57aeafc8de6b6a5c1df63efa06.tar.gz linux-8fa82790fb9dfe57aeafc8de6b6a5c1df63efa06.tar.bz2 linux-8fa82790fb9dfe57aeafc8de6b6a5c1df63efa06.zip |
Merge branch 'fixes' of master.kernel.org:/home/rmk/linux-2.6-arm
* 'fixes' of master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] fix 48d7927bdf071d05cf5d15b816cf06b0937cb84f
[ARM] 5010/1: htc-pasic3: remove unused defines and includes
[ARM] pxa: fix 0e623941bec7e80c97b076d346327b31ae17d84a
[ARM] fix lh7a40x/kev7a400 build
Diffstat (limited to 'arch/arm/mach-lh7a40x/arch-kev7a400.c')
-rw-r--r-- | arch/arm/mach-lh7a40x/arch-kev7a400.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-lh7a40x/arch-kev7a400.c b/arch/arm/mach-lh7a40x/arch-kev7a400.c index 6d26661d99f6..2ef7d0097b38 100644 --- a/arch/arm/mach-lh7a40x/arch-kev7a400.c +++ b/arch/arm/mach-lh7a40x/arch-kev7a400.c @@ -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) |