From 5f34517b1c9218ff6ddc3440300cbcd87e445fb0 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Thu, 6 Apr 1995 07:55:42 +0000 Subject: [PATCH] Output the CPU features line during the probe on a seperate line, for folks with lots of features the output use to wrap and look ugle. Reviewed by: phk --- sys/amd64/amd64/machdep.c | 6 +++--- sys/i386/i386/machdep.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c index be5807aaf414..bd8196a5344b 100644 --- a/sys/amd64/amd64/machdep.c +++ b/sys/amd64/amd64/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.114 1995/03/16 18:11:27 bde Exp $ + * $Id: machdep.c,v 1.115 1995/03/17 04:19:19 davidg Exp $ */ #include "npx.h" @@ -467,7 +467,7 @@ identifycpu() case 0x520: printf("735\\90 or 815\\100"); break; } } - printf(" Stepping=%d", cpu_id & 0xf); + printf(" Stepping=%d\n", cpu_id & 0xf); if (cpu_high > 0) { printf(" Features=0x%lx",cpu_feature); if (cpu_feature & 0x1) printf(" FPU"); @@ -476,8 +476,8 @@ identifycpu() if (cpu_feature & 0x80) printf(" MCE"); if (cpu_feature & 0x100) printf(" CX8"); if (cpu_feature & 0x200) printf(" APIC"); + printf("\n"); } - printf("\n"); } /* diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c index be5807aaf414..bd8196a5344b 100644 --- a/sys/i386/i386/machdep.c +++ b/sys/i386/i386/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.114 1995/03/16 18:11:27 bde Exp $ + * $Id: machdep.c,v 1.115 1995/03/17 04:19:19 davidg Exp $ */ #include "npx.h" @@ -467,7 +467,7 @@ identifycpu() case 0x520: printf("735\\90 or 815\\100"); break; } } - printf(" Stepping=%d", cpu_id & 0xf); + printf(" Stepping=%d\n", cpu_id & 0xf); if (cpu_high > 0) { printf(" Features=0x%lx",cpu_feature); if (cpu_feature & 0x1) printf(" FPU"); @@ -476,8 +476,8 @@ identifycpu() if (cpu_feature & 0x80) printf(" MCE"); if (cpu_feature & 0x100) printf(" CX8"); if (cpu_feature & 0x200) printf(" APIC"); + printf("\n"); } - printf("\n"); } /*