diff options
author | nsayer <nsayer@FreeBSD.org> | 2000-09-28 14:02:49 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 2000-09-28 14:02:49 +0000 |
commit | f01a7783fc8f1e1fb67915f4718a5d88ab283b89 (patch) | |
tree | 232e77be1336c415cec5a9b69116ab6f02f4d13f /sys | |
parent | 54a24389fa62c18bf6718c451e983663df7d956e (diff) | |
download | FreeBSD-src-f01a7783fc8f1e1fb67915f4718a5d88ab283b89.zip FreeBSD-src-f01a7783fc8f1e1fb67915f4718a5d88ab283b89.tar.gz |
Add suspend/resume hooks.
Submitted by: sean@stat.duke.edu
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/sound/pci/solo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/sound/pci/solo.c b/sys/dev/sound/pci/solo.c index f36d07e..e59c58f 100644 --- a/sys/dev/sound/pci/solo.c +++ b/sys/dev/sound/pci/solo.c @@ -1010,6 +1010,8 @@ static device_method_t ess_methods[] = { DEVMETHOD(device_probe, ess_probe), DEVMETHOD(device_attach, ess_attach), DEVMETHOD(device_detach, ess_detach), + DEVMETHOD(device_resume, bus_generic_resume), + DEVMETHOD(device_suspend, bus_generic_suspend), { 0, 0 } }; |