diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2009-11-23 17:57:23 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2009-11-23 17:57:23 +0000 |
commit | b4f75cc1916025449fbcee21b455e709e41f4d97 (patch) | |
tree | e41180a9e87f4ba85c7f263a7b06d811bd4da6e9 /sys/arch/i386 | |
parent | 3a2cfacdd19267f7b16a20e7b2d0beaef106fd4d (diff) |
bios* devices need to call their children on suspend/resume.
ok deraadt@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/bios.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/bios.c b/sys/arch/i386/i386/bios.c index 04a2854a832..fce188e9afd 100644 --- a/sys/arch/i386/i386/bios.c +++ b/sys/arch/i386/i386/bios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bios.c,v 1.85 2009/04/30 13:47:16 dlg Exp $ */ +/* $OpenBSD: bios.c,v 1.86 2009/11/23 17:57:22 mlarkin Exp $ */ /* * Copyright (c) 1997-2001 Michael Shalayeff @@ -86,7 +86,8 @@ int bios_print(void *, const char *); char *fixstring(char *); struct cfattach bios_ca = { - sizeof(struct bios_softc), biosprobe, biosattach + sizeof(struct bios_softc), biosprobe, biosattach, NULL, + config_activate_children }; struct cfdriver bios_cd = { |