[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20090326224919.GA31233@orion>
Date: Fri, 27 Mar 2009 01:49:19 +0300
From: Alexander Beregalov <a.beregalov@...il.com>
To: Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org,
x86@...nel.org
Subject: [PATCH 2.6.30-git] x86: visws: fix UP build
arch/x86/kernel/visws_quirks.c: In function 'visws_find_smp_config':
arch/x86/kernel/visws_quirks.c:229: error: 'setup_max_cpus' undeclared
Signed-off-by: Alexander Beregalov <a.beregalov@...il.com>
---
arch/x86/kernel/visws_quirks.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/x86/kernel/visws_quirks.c b/arch/x86/kernel/visws_quirks.c
index d801d06..f8f41c6 100644
--- a/arch/x86/kernel/visws_quirks.c
+++ b/arch/x86/kernel/visws_quirks.c
@@ -226,8 +226,10 @@ static int __init visws_find_smp_config(unsigned int reserve)
ncpus = CO_CPU_MAX;
}
+#ifdef CONFIG_SMP
if (ncpus > setup_max_cpus)
ncpus = setup_max_cpus;
+#endif
#ifdef CONFIG_X86_LOCAL_APIC
smp_found_config = 1;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists