aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorSteven Wallace <swallace@FreeBSD.org>1994-09-30 05:35:55 +0000
committerSteven Wallace <swallace@FreeBSD.org>1994-09-30 05:35:55 +0000
commit085d9ce09a398fab84fa3ed0e151ea66ff52f05b (patch)
treea01a342cb1bcd82698732ddc0e467b687624c1df /sys
parent60ef79be3f7186f59d28f6c45ca3cc69f29782f0 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/isa/isa.c7
-rw-r--r--sys/i386/isa/isa.c7
2 files changed, 12 insertions, 2 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index f4373952a985..2cd9d2367f83 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;
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index f4373952a985..2cd9d2367f83 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.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;