aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/cpu/common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index cc25c2b4a567..617a29f95b3c 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -656,6 +656,7 @@ static void __init early_identify_cpu(struct cpuinfo_x86 *c)
656 656
657void __init early_cpu_init(void) 657void __init early_cpu_init(void)
658{ 658{
659#ifdef PROCESSOR_SELECT
659 const struct cpu_dev *const *cdev; 660 const struct cpu_dev *const *cdev;
660 int count = 0; 661 int count = 0;
661 662
@@ -676,7 +677,7 @@ void __init early_cpu_init(void)
676 cpudev->c_ident[j]); 677 cpudev->c_ident[j]);
677 } 678 }
678 } 679 }
679 680#endif
680 early_identify_cpu(&boot_cpu_data); 681 early_identify_cpu(&boot_cpu_data);
681} 682}
682 683