summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorgavin <gavin@FreeBSD.org>2014-01-11 22:41:10 +0000
committergavin <gavin@FreeBSD.org>2014-01-11 22:41:10 +0000
commit6265cc52b14cbaf87a1e5291bd8564b1e6476553 (patch)
tree407ed7f63318356995630be1abce2530105504aa /sys/i386
parent6cec7e0fada7d586a1826a8f915000277efea494 (diff)
downloadFreeBSD-src-6265cc52b14cbaf87a1e5291bd8564b1e6476553.zip
FreeBSD-src-6265cc52b14cbaf87a1e5291bd8564b1e6476553.tar.gz
Remove spaces from boot messages when we print the CPU ID/Family/Stepping
to match the rest of the CPU identification lines, and once again fit into 80 columns in the usual case.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/identcpu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index 1af3ac2..9a09adb 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -676,9 +676,9 @@ printcpuinfo(void)
}
printf("-class CPU)\n");
if(*cpu_vendor)
- printf(" Origin = \"%s\"",cpu_vendor);
+ printf(" Origin=\"%s\"",cpu_vendor);
if(cpu_id)
- printf(" Id = 0x%x", cpu_id);
+ printf(" Id=0x%x", cpu_id);
if (cpu_vendor_id == CPU_VENDOR_INTEL ||
cpu_vendor_id == CPU_VENDOR_AMD ||
@@ -688,9 +688,9 @@ printcpuinfo(void)
cpu_vendor_id == CPU_VENDOR_NSC ||
(cpu_vendor_id == CPU_VENDOR_CYRIX &&
((cpu_id & 0xf00) > 0x500))) {
- printf(" Family = 0x%x", CPUID_TO_FAMILY(cpu_id));
- printf(" Model = 0x%x", CPUID_TO_MODEL(cpu_id));
- printf(" Stepping = %u", cpu_id & CPUID_STEPPING);
+ printf(" Family=0x%x", CPUID_TO_FAMILY(cpu_id));
+ printf(" Model=0x%x", CPUID_TO_MODEL(cpu_id));
+ printf(" Stepping=%u", cpu_id & CPUID_STEPPING);
if (cpu_vendor_id == CPU_VENDOR_CYRIX)
printf("\n DIR=0x%04x", cyrix_did);
/*
OpenPOWER on IntegriCloud