summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-03-25 03:29:40 +0000
committerache <ache@FreeBSD.org>1997-03-25 03:29:40 +0000
commit5e588bcaa33a732d4ed5abfa7e8e709ec6c25143 (patch)
tree834dc3e6e1aa099b11e61968eaba6d8863d570f0 /sys
parent0b0ae0cc74d7be9e07e13301a81f830dd2f9896e (diff)
downloadFreeBSD-src-5e588bcaa33a732d4ed5abfa7e8e709ec6c25143.zip
FreeBSD-src-5e588bcaa33a732d4ed5abfa7e8e709ec6c25143.tar.gz
Replace more verbose "at <not configured>" with less verbose "at ?",
we don't need much attention here, because this diagnostic printed first and then card will be configured.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/isa/isa.c6
-rw-r--r--sys/i386/isa/isa.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index a563b89..63b29c71 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.77 1997/02/22 09:36:40 peter Exp $
+ * $Id: isa.c,v 1.78 1997/03/25 03:13:05 ache Exp $
*/
/*
@@ -394,7 +394,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 <not configured>");
+ printf(" at ?");
else if (isdp->id_iobase != -2) {
printf(" at 0x%x", isdp->id_iobase);
if (isdp->id_iobase + id_alive - 1 !=
@@ -455,7 +455,7 @@ config_isadev_c(isdp, mp, reconfig)
printf("%s%d not found",
dp->name, isdp->id_unit);
if (isdp->id_iobase == -1)
- printf(" at <not configured>");
+ printf(" at ?");
else if (isdp->id_iobase != -2)
printf(" at 0x%x", isdp->id_iobase);
printf("\n");
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index a563b89..63b29c71 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.77 1997/02/22 09:36:40 peter Exp $
+ * $Id: isa.c,v 1.78 1997/03/25 03:13:05 ache Exp $
*/
/*
@@ -394,7 +394,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 <not configured>");
+ printf(" at ?");
else if (isdp->id_iobase != -2) {
printf(" at 0x%x", isdp->id_iobase);
if (isdp->id_iobase + id_alive - 1 !=
@@ -455,7 +455,7 @@ config_isadev_c(isdp, mp, reconfig)
printf("%s%d not found",
dp->name, isdp->id_unit);
if (isdp->id_iobase == -1)
- printf(" at <not configured>");
+ printf(" at ?");
else if (isdp->id_iobase != -2)
printf(" at 0x%x", isdp->id_iobase);
printf("\n");
OpenPOWER on IntegriCloud