summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/isa.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-11-29 15:42:40 +0000
committerphk <phk@FreeBSD.org>1998-11-29 15:42:40 +0000
commit0c339fec9efb498da17fe5dd4a1a2525faf6340b (patch)
treed87948074aff4108bc9673828d912359ff7d5f96 /sys/i386/isa/isa.c
parenta42ed30fc8a9387c425f5431d1d75cfde5a63b83 (diff)
downloadFreeBSD-src-0c339fec9efb498da17fe5dd4a1a2525faf6340b.zip
FreeBSD-src-0c339fec9efb498da17fe5dd4a1a2525faf6340b.tar.gz
don't print '?' for ioaddr the device may legitimately not have an
ioaddr.
Diffstat (limited to 'sys/i386/isa/isa.c')
-rw-r--r--sys/i386/isa/isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index fe686e1..177024d 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.115 1998/10/13 08:24:38 dg Exp $
+ * $Id: isa.c,v 1.116 1998/10/22 05:58:39 bde Exp $
*/
/*
@@ -513,7 +513,7 @@ config_isadev_c(isdp, mp, reconfig)
printf("%s%d", dp->name, isdp->id_unit);
if (id_alive != -1) {
if (isdp->id_iobase == -1)
- printf(" at ?");
+ printf(" at");
else {
printf(" at 0x%x", isdp->id_iobase);
if (isdp->id_iobase + id_alive - 1 !=
OpenPOWER on IntegriCloud