فهرست منبع

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>
Jesper Nilsson 16 سال پیش
والد
کامیت
768c31495a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      arch/cris/arch-v32/kernel/irq.c

+ 1 - 1
arch/cris/arch-v32/kernel/irq.c

@@ -428,8 +428,8 @@ crisv32_do_multiple(struct pt_regs* regs)
 			 masked[i] &= ~TIMER_MASK;
 			 masked[i] &= ~TIMER_MASK;
 			 do_IRQ(TIMER0_INTR_VECT, regs);
 			 do_IRQ(TIMER0_INTR_VECT, regs);
 		}
 		}
-	}
 #endif
 #endif
+	}
 
 
 #ifdef IGNORE_MASK
 #ifdef IGNORE_MASK
 	/* Remove IRQs that can't be handled as multiple. */
 	/* Remove IRQs that can't be handled as multiple. */