diff options
author | kato <kato@FreeBSD.org> | 1997-10-12 12:02:20 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1997-10-12 12:02:20 +0000 |
commit | 74b4da4ea85757f48f5574d557af112e613fc76f (patch) | |
tree | 40d71e1885a61d3b86d3b9a76abe40996493e591 | |
parent | efda9bcc7883171dccf7a23808e5d4123a92f6ca (diff) | |
download | FreeBSD-src-74b4da4ea85757f48f5574d557af112e613fc76f.zip FreeBSD-src-74b4da4ea85757f48f5574d557af112e613fc76f.tar.gz |
Synchronize with sys/i386/isa/isa.c revision 1.106.
-rw-r--r-- | sys/pc98/pc98/pc98.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/pc98/pc98.c b/sys/pc98/pc98/pc98.c index e7e998a..795972d 100644 --- a/sys/pc98/pc98/pc98.c +++ b/sys/pc98/pc98/pc98.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)isa.c 7.2 (Berkeley) 5/13/91 - * $Id: pc98.c,v 1.41 1997/09/20 05:29:03 kato Exp $ + * $Id: pc98.c,v 1.42 1997/09/22 12:23:48 kato Exp $ */ /* @@ -486,9 +486,9 @@ config_isadev_c(isdp, mp, reconfig) struct isa_driver *dp = isdp->id_driver; if (!isdp->id_enabled) { - printf("%s%d: disabled, not probed.\n", - dp->name, isdp->id_unit); - return; + if (bootverbose) + printf("%s%d: disabled, not probed.\n", dp->name, isdp->id_unit); + return; } checkbits = CC_DRQ | CC_IOADDR | CC_MEMADDR; if (!reconfig && haveseen_isadev(isdp, checkbits)) |