aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel@gmail.com>2008-09-04 23:09:11 -0400
committerIngo Molnar <mingo@elte.hu>2008-09-05 03:40:54 -0400
commit56f0d033be2ebb983993e5d7f24ae232c9a1e7f9 (patch)
tree3fb036830693625683b33d3b07bb420c070dbd63 /arch
parent6627d2423067f2c6eedb422a59fba9270a3c5e36 (diff)
x86: cpu/common*.c: merge print_cpu_info()
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/cpu/common_64.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/common_64.c b/arch/x86/kernel/cpu/common_64.c
index 6475548d64eb..68b06a39dcac 100644
--- a/arch/x86/kernel/cpu/common_64.c
+++ b/arch/x86/kernel/cpu/common_64.c
@@ -730,8 +730,20 @@ __setup("noclflush", setup_noclflush);
730 730
731void __cpuinit print_cpu_info(struct cpuinfo_x86 *c) 731void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
732{ 732{
733 char *vendor = NULL;
734
735 if (c->x86_vendor < X86_VENDOR_NUM)
736 vendor = this_cpu->c_vendor;
737 else if (c->cpuid_level >= 0)
738 vendor = c->x86_vendor_id;
739
740 if (vendor && strncmp(c->x86_model_id, vendor, strlen(vendor)))
741 printk(KERN_CONT "%s ", vendor);
742
733 if (c->x86_model_id[0]) 743 if (c->x86_model_id[0])
734 printk(KERN_CONT "%s", c->x86_model_id); 744 printk(KERN_CONT "%s", c->x86_model_id);
745 else
746 printk(KERN_CONT "%d86", c->x86);
735 747
736 if (c->x86_mask || c->cpuid_level >= 0) 748 if (c->x86_mask || c->cpuid_level >= 0)
737 printk(KERN_CONT " stepping %02x\n", c->x86_mask); 749 printk(KERN_CONT " stepping %02x\n", c->x86_mask);