[MIPS] Ocelot G: Fix : "CURRENTLY_UNUSED" is not defined warning.

CC arch/mips/momentum/ocelot_g/gt-irq.o
arch/mips/momentum/ocelot_g/gt-irq.c:30:5: warning: "CURRENTLY_UNUSED" is not defined
arch/mips/momentum/ocelot_g/gt-irq.c:199:5: warning: "CURRENTLY_UNUSED" is not defined

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+4 -4
+4 -4
arch/mips/momentum/ocelot_g/gt-irq.c
··· 27 27 * be handled and ack'ed differently than other MIPS interrupts. 28 28 */ 29 29 30 - #if CURRENTLY_UNUSED 30 + #if 0 31 31 32 32 struct tq_struct irq_handlers[MAX_CAUSE_REGS][MAX_CAUSE_REG_WIDTH]; 33 33 void hook_irq_handler(int int_cause, int bit_num, void *isr_ptr); ··· 95 95 return 0; 96 96 return 1; 97 97 } 98 - #endif /* UNUSED */ 98 + #endif /* 0 */ 99 99 100 100 /* 101 101 * Interrupt handler for interrupts coming from the Galileo chip via P0_INT#. ··· 196 196 197 197 void gt64240_irq_init(void) 198 198 { 199 - #if CURRENTLY_UNUSED 199 + #if 0 200 200 int i, j; 201 201 202 202 /* Reset irq handlers pointers to NULL */ ··· 208 208 irq_handlers[i][j].data = NULL; 209 209 } 210 210 } 211 - #endif 211 + #endif /* 0 */ 212 212 }