diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1998-07-28 13:26:52 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1998-07-28 13:26:52 +0000 |
commit | 072d5dde44297d6b57cec6c8b82b1e6a7452e51e (patch) | |
tree | 3d12203e1f8b5beee6a1b2e63636c94a5678d88d /sys/dev/isa/isa.c | |
parent | 33f9479c0ac6699a0522c894be40f0a6fe8b7c1e (diff) |
Disable ISA PNP devices before ISA scan
Diffstat (limited to 'sys/dev/isa/isa.c')
-rw-r--r-- | sys/dev/isa/isa.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index f59a66d7952..73dd22b7a8f 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa.c,v 1.34 1998/06/29 05:51:13 downsj Exp $ */ +/* $OpenBSD: isa.c,v 1.35 1998/07/28 13:26:48 csapuntz Exp $ */ /* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */ /* @@ -123,6 +123,10 @@ isaattach(parent, self, aux) #endif /* NISADMA > 0 */ sc->sc_ic = iba->iba_ic; +#if NISAPNP > 0 + isapnp_isa_attach_hook(sc); +#endif + #if NISADMA > 0 /* * Map the registers used by the ISA DMA controller. |