| To: | ralf@linux-mips.org |
|---|---|
| Subject: | [PATCH] MIPS: Netlogic: Fix UP compilation on XLR |
| From: | "Jayachandran C" <jchandra@broadcom.com> |
| Date: | Mon, 7 Jan 2013 19:51:08 +0530 |
| Cc: | "Jayachandran C" <jchandra@broadcom.com>, linux-mips@linux-mips.org |
| List-archive: | <http://www.linux-mips.org/archives/linux-mips/> |
| List-help: | <mailto:ecartis@linux-mips.org?Subject=help> |
| List-id: | linux-mips <linux-mips.eddie.linux-mips.org> |
| List-owner: | <mailto:ralf@linux-mips.org> |
| List-post: | <mailto:linux-mips@linux-mips.org> |
| List-software: | Ecartis version 1.0.0 |
| List-subscribe: | <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips> |
| List-unsubscribe: | <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips> |
| Sender: | linux-mips-bounce@linux-mips.org |
The commit 2a37b1a "MIPS: Netlogic: Move from u32 cpumask to cpumask_t"
breaks uniprocessor compilation on XLR with:
arch/mips/netlogic/xlr/setup.c: In function 'prom_init':
arch/mips/netlogic/xlr/setup.c:196:6: error: unused variable 'i'
Fix by defining 'i' only when CONFIG_SMP is defined.
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
---
arch/mips/netlogic/xlr/setup.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/arch/mips/netlogic/xlr/setup.c b/arch/mips/netlogic/xlr/setup.c
index 4e7f49d..c5ce699 100644
--- a/arch/mips/netlogic/xlr/setup.c
+++ b/arch/mips/netlogic/xlr/setup.c
@@ -193,8 +193,11 @@ static void nlm_init_node(void)
void __init prom_init(void)
{
- int i, *argv, *envp; /* passed as 32 bit ptrs */
+ int *argv, *envp; /* passed as 32 bit ptrs */
struct psb_info *prom_infop;
+#ifdef CONFIG_SMP
+ int i;
+#endif
/* truncate to 32 bit and sign extend all args */
argv = (int *)(long)(int)fw_arg1;
--
1.7.9.5
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] mips: bcm47xx: select GPIOLIB for BCMA on bcm47xx platform, Arend van Spriel |
|---|---|
| Next by Date: | [RESEND PATCH v3 0/5] MIPS: enable APRP (APSP) and add features - v3, Deng-Cheng Zhu |
| Previous by Thread: | RE: [PATCH v4] MIPS: Make CP0 config registers readable via sysfs., Hill, Steven |
| Next by Thread: | [RESEND PATCH v3 0/5] MIPS: enable APRP (APSP) and add features - v3, Deng-Cheng Zhu |
| Indexes: | [Date] [Thread] [Top] [All Lists] |