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