summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/isa.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-10-12 13:12:45 +0000
committerbde <bde@FreeBSD.org>1998-10-12 13:12:45 +0000
commite23991ad03b40edb7db385e76cc199c243f04200 (patch)
tree868904c5e5d9df3ea335753de263d6b37c1d2f30 /sys/i386/isa/isa.c
parentaa283c7d36671402f45608ca2d7aabce34a8defc (diff)
downloadFreeBSD-src-e23991ad03b40edb7db385e76cc199c243f04200.zip
FreeBSD-src-e23991ad03b40edb7db385e76cc199c243f04200.tar.gz
Don't print conflict messages in haveseen_isadev() if CC_QUIET is
specified. This makes haveseen_isadev() useful for searching for a free resource. This increases the bitrot in the pci RESOURCE_CHECK code. Fixed the pre-attach conflict message. The flag for distinguishing pre-attach conflict checks from pre-probe ones was never set.
Diffstat (limited to 'sys/i386/isa/isa.c')
-rw-r--r--sys/i386/isa/isa.c26
1 files changed, 16 insertions, 10 deletions
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index f878655..c9852d9 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.112 1998/04/17 22:36:36 des Exp $
+ * $Id: isa.c,v 1.113 1998/07/19 04:22:55 bde Exp $
*/
/*
@@ -160,8 +160,9 @@ haveseen(dvp, tmpdvp, checkbits)
if ((dvp->id_iobase >= tmpdvp->id_iobase) &&
(dvp->id_iobase <=
(tmpdvp->id_iobase + tmpdvp->id_alive - 1))) {
- conflict(dvp, tmpdvp, dvp->id_iobase, whatnot,
- "I/O address", "0x%x");
+ if (!(checkbits & CC_QUIET))
+ conflict(dvp, tmpdvp, dvp->id_iobase,
+ whatnot, "I/O address", "0x%x");
return 1;
}
}
@@ -179,8 +180,10 @@ haveseen(dvp, tmpdvp, checkbits)
if ((KERNBASE + dvp->id_maddr >= tmpdvp->id_maddr) &&
(KERNBASE + dvp->id_maddr <=
(tmpdvp->id_maddr + tmpdvp->id_msize - 1))) {
- conflict(dvp, tmpdvp, (int)dvp->id_maddr,
- whatnot, "maddr", "0x%x");
+ if (!(checkbits & CC_QUIET))
+ conflict(dvp, tmpdvp,
+ (int)dvp->id_maddr, whatnot,
+ "maddr", "0x%x");
return 1;
}
}
@@ -189,8 +192,10 @@ haveseen(dvp, tmpdvp, checkbits)
*/
if (checkbits & CC_IRQ && tmpdvp->id_irq) {
if (tmpdvp->id_irq == dvp->id_irq) {
- conflict(dvp, tmpdvp, ffs(dvp->id_irq) - 1,
- whatnot, "irq", "%d");
+ if (!(checkbits & CC_QUIET))
+ conflict(dvp, tmpdvp,
+ ffs(dvp->id_irq) - 1, whatnot,
+ "irq", "%d");
return 1;
}
}
@@ -199,8 +204,9 @@ haveseen(dvp, tmpdvp, checkbits)
*/
if (checkbits & CC_DRQ && tmpdvp->id_drq != -1) {
if (tmpdvp->id_drq == dvp->id_drq) {
- conflict(dvp, tmpdvp, dvp->id_drq, whatnot,
- "drq", "%d");
+ if (!(checkbits & CC_QUIET))
+ conflict(dvp, tmpdvp, dvp->id_drq,
+ whatnot, "drq", "%d");
return 1;
}
}
@@ -545,7 +551,7 @@ config_isadev_c(isdp, mp, reconfig)
* already skip the early check for IRQs and force
* a check for IRQs in the next group of checks.
*/
- checkbits |= CC_IRQ;
+ checkbits |= CC_ATTACH | CC_IRQ;
if (haveseen_isadev(isdp, checkbits))
return;
isdp->id_alive = id_alive;
OpenPOWER on IntegriCloud