diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-08-25 21:38:00 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-08-25 21:38:00 +0000 |
commit | 1983c3805b3ebdcf9306dd80538f44e4947dcb23 (patch) | |
tree | db58344e83e8ec2da5c5a683d543bb6323d20f30 /sys/dev/pci | |
parent | 5fa7cbf2720de57e4ec997758522caff75547a8a (diff) |
Make CardBus ral(4) suspend and resume properly on machines that keep the
CardBus bridge powered up during suspend. Step zero on the long road
towards fully suspending CardBus on all machines.
ok deraadt@, damien@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pccbb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/pccbb.c b/sys/dev/pci/pccbb.c index 51517a241a6..499be28f01b 100644 --- a/sys/dev/pci/pccbb.c +++ b/sys/dev/pci/pccbb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccbb.c,v 1.76 2010/06/30 19:46:30 blambert Exp $ */ +/* $OpenBSD: pccbb.c,v 1.77 2010/08/25 21:37:59 kettenis Exp $ */ /* $NetBSD: pccbb.c,v 1.96 2004/03/28 09:49:31 nakayama Exp $ */ /* @@ -176,7 +176,8 @@ void cb_show_regs(pci_chipset_tag_t, pcitag_t, bus_space_tag_t, #endif struct cfattach cbb_pci_ca = { - sizeof(struct pccbb_softc), pcicbbmatch, pccbbattach + sizeof(struct pccbb_softc), pcicbbmatch, pccbbattach, NULL, + config_activate_children }; static struct pcmcia_chip_functions pccbb_pcmcia_funcs = { |