[2.6 patch] MIPS SEAD compile fix

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Chris Dearman <chris@...>, Atsushi Nemoto <anemo@...>, Ralf Baechle <ralf@...>
Cc: <linux-mips@...>, <linux-kernel@...>
Date: Sunday, May 25, 2008 - 2:03 pm

This patch fixes the following compile error caused by
commit 39b8d5254246ac56342b72f812255c8f7a74dca9
([MIPS] Add support for MIPS CMP platform.):

<--  snip  -->

...
  CC      arch/mips/mips-boards/generic/time.o
cc1: warnings being treated as errors
/home/bunk/linux/kernel-2.6/git/linux-2.6/arch/mips/mips-boards/generic/time.c:63: error: 'ledbitmask' defined but not used
make[2]: *** [arch/mips/mips-boards/generic/time.o] Error 1

<--  snip  -->

Signed-off-by: Adrian Bunk <adrian.bunk@movial.fi>

---
a6622e47dd128da338d6dbae457ec1b043604814 diff --git a/arch/mips/mips-boards/generic/time.c b/arch/mips/mips-boards/generic/time.c
index 008fd82..df23558 100644
--- a/arch/mips/mips-boards/generic/time.c
+++ b/arch/mips/mips-boards/generic/time.c
@@ -58,10 +58,14 @@ static int mips_cpu_timer_irq;
 static int mips_cpu_perf_irq;
 extern int cp0_perfcount_irq;
 
+#if defined(CONFIG_MIPS_MALTA) || defined(CONFIG_MIPS_ATLAS)
+
 DEFINE_PER_CPU(unsigned int, tickcount);
 #define tickcount_this_cpu __get_cpu_var(tickcount)
 static unsigned long ledbitmask;
 
+#endif
+
 static void mips_timer_dispatch(void)
 {
 #if defined(CONFIG_MIPS_MALTA) || defined(CONFIG_MIPS_ATLAS)

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[2.6 patch] MIPS SEAD compile fix, Adrian Bunk, (Sun May 25, 2:03 pm)
Re: [2.6 patch] MIPS SEAD compile fix, Ralf Baechle, (Mon May 26, 6:43 pm)