aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/mpparse_64.c
diff options
context:
space:
mode:
authorAlexey Starikovskiy <astarikovskiy@suse.de>2008-04-04 15:42:40 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:36 -0400
commit4421b1c8b9f5da24f8c737ede2c05d399dea2015 (patch)
tree20c1cda53ea743fcb413a9c472d0cc3178983a16 /arch/x86/kernel/mpparse_64.c
parent62441bf1e0d5153dfb0cf8497df16deacff90789 (diff)
x86: unify get_smp_config
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/mpparse_64.c')
-rw-r--r--arch/x86/kernel/mpparse_64.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/arch/x86/kernel/mpparse_64.c b/arch/x86/kernel/mpparse_64.c
index 11b74c9b8e01..8c7af5b7ddd4 100644
--- a/arch/x86/kernel/mpparse_64.c
+++ b/arch/x86/kernel/mpparse_64.c
@@ -490,7 +490,15 @@ static void __init __get_smp_config(unsigned early)
490 490
491 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n", 491 printk(KERN_INFO "Intel MultiProcessor Specification v1.%d\n",
492 mpf->mpf_specification); 492 mpf->mpf_specification);
493 493#ifdef CONFIG_X86_32
494 if (mpf->mpf_feature2 & (1 << 7)) {
495 printk(KERN_INFO " IMCR and PIC compatibility mode.\n");
496 pic_mode = 1;
497 } else {
498 printk(KERN_INFO " Virtual Wire compatibility mode.\n");
499 pic_mode = 0;
500 }
501#endif
494 /* 502 /*
495 * Now see if we need to read further. 503 * Now see if we need to read further.
496 */ 504 */