diff options
author | swallace <swallace@FreeBSD.org> | 1994-09-30 05:35:55 +0000 |
---|---|---|
committer | swallace <swallace@FreeBSD.org> | 1994-09-30 05:35:55 +0000 |
commit | 0835249acaf5280dc0e2541d8b73b1dc34f6a74d (patch) | |
tree | a01a342cb1bcd82698732ddc0e467b687624c1df /sys/amd64/isa | |
parent | fdd10c3ac87e451c565408df6a793b33ef0d7251 (diff) | |
download | FreeBSD-src-0835249acaf5280dc0e2541d8b73b1dc34f6a74d.zip FreeBSD-src-0835249acaf5280dc0e2541d8b73b1dc34f6a74d.tar.gz |
Add #ifndef ALLOW_CONFLICT_IRQ
Reviewed by: jkh
Diffstat (limited to 'sys/amd64/isa')
-rw-r--r-- | sys/amd64/isa/isa.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c index f437395..2cd9d23 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.24 1994/09/13 17:06:47 phk Exp $ + * $Id: isa.c,v 1.25 1994/09/20 05:07:11 bde Exp $ */ /* @@ -327,6 +327,9 @@ config_isadev(isdp, mp) struct isa_driver *dp = isdp->id_driver; checkbits = 0; +#ifndef ALLOW_CONFLICT_IRQ + checkbits |= CC_IRQ; +#endif #ifndef ALLOW_CONFLICT_DRQ checkbits |= CC_DRQ; #endif @@ -389,7 +392,9 @@ config_isadev(isdp, mp) * check for IRQs and force a check for IRQs in the next * group of checks. */ +#ifndef ALLOW_CONFLICT_IRQ checkbits |= CC_IRQ; +#endif if (haveseen_isadev(isdp, checkbits)) return; isdp->id_alive = id_alive; |