summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-08 20:18:33 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-08 20:18:33 +0000
commit66b15c84fc4524a6134bee5b5887768e7b231909 (patch)
treed0ee57fc9ff82c5007b2154fbc3159f66f700217 /sys/dev/isa
parent7f1596a3cccd744c32e08fe55614e1db8fbe121a (diff)
use config_activate_children to activate children that might need it
Diffstat (limited to 'sys/dev/isa')
-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 = {