summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2010-07-08 20:18:32 +0000
committerderaadt <deraadt@openbsd.org>2010-07-08 20:18:32 +0000
commit50e5822fb1c3301d4a0b059cb87c55a085d21857 (patch)
treea8580bf0f594a0818a3b35f30adf0866f0908acc
parentuse config_activate_children to get down to the isa bus activation code (diff)
downloadwireguard-openbsd-50e5822fb1c3301d4a0b059cb87c55a085d21857.tar.xz
wireguard-openbsd-50e5822fb1c3301d4a0b059cb87c55a085d21857.zip
use config_activate_children to activate children that might need it
-rw-r--r--sys/dev/isa/isa.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c
index 264f7944818..408e9f179dd 100644
--- a/sys/dev/isa/isa.c
+++ b/sys/dev/isa/isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isa.c,v 1.39 2003/06/03 21:09:02 deraadt Exp $ */
+/* $OpenBSD: isa.c,v 1.40 2010/07/08 20:18:32 deraadt Exp $ */
/* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */
/*
@@ -75,7 +75,8 @@ void isaattach(struct device *, struct device *, void *);
extern int autoconf_verbose;
struct cfattach isa_ca = {
- sizeof(struct isa_softc), isamatch, isaattach
+ sizeof(struct isa_softc), isamatch, isaattach, NULL,
+ config_activate_children
};
struct cfdriver isa_cd = {