diff options
author | fsmp <fsmp@FreeBSD.org> | 1997-07-22 19:57:30 +0000 |
---|---|---|
committer | fsmp <fsmp@FreeBSD.org> | 1997-07-22 19:57:30 +0000 |
commit | ec87c7772144d9791d26fbb297b6233f58481156 (patch) | |
tree | f552971e5ad54ee06fe24cd753f8d209b3c4eafb | |
parent | a19b73a7b02c8c15757dcc4a4fc45d6060c817ec (diff) | |
download | FreeBSD-src-ec87c7772144d9791d26fbb297b6233f58481156.zip FreeBSD-src-ec87c7772144d9791d26fbb297b6233f58481156.tar.gz |
Hid the existance of imen via a dump routine.
-rw-r--r-- | sys/amd64/amd64/autoconf.c | 8 | ||||
-rw-r--r-- | sys/i386/i386/autoconf.c | 8 |
2 files changed, 4 insertions, 12 deletions
diff --git a/sys/amd64/amd64/autoconf.c b/sys/amd64/amd64/autoconf.c index a6b3929..268b0f9 100644 --- a/sys/amd64/amd64/autoconf.c +++ b/sys/amd64/amd64/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.3 1997/07/20 17:06:24 smp Exp smp $ + * $Id: autoconf.c,v 1.72 1997/07/20 18:05:16 fsmp Exp $ */ /* @@ -222,11 +222,7 @@ configure(dummy) if (bootverbose) { #ifdef APIC_IO - printf("SMP: enabled INTs: "); - for (i = 0; i < 24; ++i) - if ((imen & (1 << i)) == 0) - printf("%d, ", i); - printf("imen: 0x%08x\n", imen); + imen_dump(); #endif /* APIC_IO */ /* diff --git a/sys/i386/i386/autoconf.c b/sys/i386/i386/autoconf.c index a6b3929..268b0f9 100644 --- a/sys/i386/i386/autoconf.c +++ b/sys/i386/i386/autoconf.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91 - * $Id: autoconf.c,v 1.3 1997/07/20 17:06:24 smp Exp smp $ + * $Id: autoconf.c,v 1.72 1997/07/20 18:05:16 fsmp Exp $ */ /* @@ -222,11 +222,7 @@ configure(dummy) if (bootverbose) { #ifdef APIC_IO - printf("SMP: enabled INTs: "); - for (i = 0; i < 24; ++i) - if ((imen & (1 << i)) == 0) - printf("%d, ", i); - printf("imen: 0x%08x\n", imen); + imen_dump(); #endif /* APIC_IO */ /* |