diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-07-08 20:18:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-07-08 20:18:33 +0000 |
commit | 66b15c84fc4524a6134bee5b5887768e7b231909 (patch) | |
tree | d0ee57fc9ff82c5007b2154fbc3159f66f700217 /sys/dev/isa | |
parent | 7f1596a3cccd744c32e08fe55614e1db8fbe121a (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.c | 5 |
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 = { |