From cfca102355f26d943c856755ad7707c47403c85c Mon Sep 17 00:00:00 2001 From: Luoqi Chen Date: Wed, 22 Sep 1999 21:21:53 +0000 Subject: [PATCH] Display CPU (BSP) clock speed on SMP systems. --- sys/amd64/amd64/identcpu.c | 4 ---- sys/i386/i386/identcpu.c | 4 ---- 2 files changed, 8 deletions(-) diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index 63a05605456..9f73a96438d 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -506,21 +506,17 @@ printcpuinfo(void) #endif #if defined(I586_CPU) case CPUCLASS_586: -#ifndef SMP printf("%d.%02d-MHz ", (tsc_freq + 4999) / 1000000, ((tsc_freq + 4999) / 10000) % 100); -#endif printf("586"); break; #endif #if defined(I686_CPU) case CPUCLASS_686: -#ifndef SMP printf("%d.%02d-MHz ", (tsc_freq + 4999) / 1000000, ((tsc_freq + 4999) / 10000) % 100); -#endif printf("686"); break; #endif diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c index 63a05605456..9f73a96438d 100644 --- a/sys/i386/i386/identcpu.c +++ b/sys/i386/i386/identcpu.c @@ -506,21 +506,17 @@ printcpuinfo(void) #endif #if defined(I586_CPU) case CPUCLASS_586: -#ifndef SMP printf("%d.%02d-MHz ", (tsc_freq + 4999) / 1000000, ((tsc_freq + 4999) / 10000) % 100); -#endif printf("586"); break; #endif #if defined(I686_CPU) case CPUCLASS_686: -#ifndef SMP printf("%d.%02d-MHz ", (tsc_freq + 4999) / 1000000, ((tsc_freq + 4999) / 10000) % 100); -#endif printf("686"); break; #endif