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.
This commit is contained in:
Andrey A. Chernov 1997-03-25 03:29:40 +00:00
parent 70b57d05df
commit e4960ae4f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24237
2 changed files with 6 additions and 6 deletions

View File

@ -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");

View File

@ -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");