diff options
author | Jesper Nilsson <jesper.nilsson@axis.com> | 2009-06-10 05:45:47 -0400 |
---|---|---|
committer | Jesper Nilsson <jesper.nilsson@axis.com> | 2009-06-11 13:40:56 -0400 |
commit | 768c31495abe49227a96261b5aa19f34b30882b1 (patch) | |
tree | 0b7ecaf5f5f8e53862a2783a6d7d9de184bb1308 /arch/cris | |
parent | 91a120d03fd901fc8b95e85af7903358c5862d65 (diff) |
CRISv32: irq.c - Move end brace outside #endif
The end brace for a larger for statement was placed inside the #else
part of #ifdef TIMER_VECT1. However, for all current chips, the
define TIMER_VECT1 is always unset, and the error was never triggered.
Move the brace down below the #endif.
Fixes:
http://bugzilla.kernel.org/show_bug.cgi?id=13476
Reported-by: Martin Ettl <ettl.martin@gmx.de>
Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Mikael Starvik <mikael.starvik@axis.com>
Diffstat (limited to 'arch/cris')
-rw-r--r-- | arch/cris/arch-v32/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/cris/arch-v32/kernel/irq.c b/arch/cris/arch-v32/kernel/irq.c index df3925cb1c7f..9c9eb5b708fc 100644 --- a/arch/cris/arch-v32/kernel/irq.c +++ b/arch/cris/arch-v32/kernel/irq.c | |||
@@ -428,8 +428,8 @@ crisv32_do_multiple(struct pt_regs* regs) | |||
428 | masked[i] &= ~TIMER_MASK; | 428 | masked[i] &= ~TIMER_MASK; |
429 | do_IRQ(TIMER0_INTR_VECT, regs); | 429 | do_IRQ(TIMER0_INTR_VECT, regs); |
430 | } | 430 | } |
431 | } | ||
432 | #endif | 431 | #endif |
432 | } | ||
433 | 433 | ||
434 | #ifdef IGNORE_MASK | 434 | #ifdef IGNORE_MASK |
435 | /* Remove IRQs that can't be handled as multiple. */ | 435 | /* Remove IRQs that can't be handled as multiple. */ |