From 0c339fec9efb498da17fe5dd4a1a2525faf6340b Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 29 Nov 1998 15:42:40 +0000 Subject: don't print '?' for ioaddr the device may legitimately not have an ioaddr. --- sys/amd64/isa/isa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/amd64/isa/isa.c') diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index fe686e1..177024d 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.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 != -- cgit v1.1