From 6e65a78aee78f663139c6d10f21d18d7416617a8 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 25 Feb 1995 18:55:53 +0000 Subject: [PATCH] Read K&R and get the { } right :-) --- sys/amd64/isa/isa.c | 13 ++++++------- sys/i386/isa/isa.c | 13 ++++++------- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index 0d7cec43af2a..5bb18f4019a4 100644 --- a/sys/amd64/isa/isa.c +++ b/sys/amd64/isa/isa.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa.c,v 1.37 1995/02/17 02:22:54 phk Exp $ + * $Id: isa.c,v 1.38 1995/02/25 18:29:10 phk Exp $ */ /* @@ -456,12 +456,11 @@ config_isadev_c(isdp, mp, reconfig) if (!(isdp->id_iobase & 0xf300)) { printf(" on motherboard\n"); } else if (isdp->id_iobase >= 0x1000 && - !(isdp->id_opbase & 0x300)) { - printf (" on eisa slot %d\n", - isdp->id_iobase >> 12); - } else { - printf (" on isa\n"); - } + !(isdp->id_iobase & 0x300)) { + printf (" on eisa slot %d\n", + isdp->id_iobase >> 12); + } else { + printf (" on isa\n"); } } /* diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c index 0d7cec43af2a..5bb18f4019a4 100644 --- a/sys/i386/isa/isa.c +++ b/sys/i386/isa/isa.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: isa.c,v 1.37 1995/02/17 02:22:54 phk Exp $ + * $Id: isa.c,v 1.38 1995/02/25 18:29:10 phk Exp $ */ /* @@ -456,12 +456,11 @@ config_isadev_c(isdp, mp, reconfig) if (!(isdp->id_iobase & 0xf300)) { printf(" on motherboard\n"); } else if (isdp->id_iobase >= 0x1000 && - !(isdp->id_opbase & 0x300)) { - printf (" on eisa slot %d\n", - isdp->id_iobase >> 12); - } else { - printf (" on isa\n"); - } + !(isdp->id_iobase & 0x300)) { + printf (" on eisa slot %d\n", + isdp->id_iobase >> 12); + } else { + printf (" on isa\n"); } } /*