summaryrefslogtreecommitdiffstats
path: root/sys/pci/pcisupport.c
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1999-05-10 17:56:23 +0000
committerdfr <dfr@FreeBSD.org>1999-05-10 17:56:23 +0000
commite65cf80c48f6aa40f23a054dc927e055c2b34d59 (patch)
tree48b3ae426dbc6abd11ded38f39d9215d73bcb7d2 /sys/pci/pcisupport.c
parent76b6e7815852eca02a8dd7c2ceb957dc3d9b2fdb (diff)
downloadFreeBSD-src-e65cf80c48f6aa40f23a054dc927e055c2b34d59.zip
FreeBSD-src-e65cf80c48f6aa40f23a054dc927e055c2b34d59.tar.gz
Add missing suspend/resume methods.
Diffstat (limited to 'sys/pci/pcisupport.c')
-rw-r--r--sys/pci/pcisupport.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/pcisupport.c b/sys/pci/pcisupport.c
index 3432bf3..f77bacb 100644
--- a/sys/pci/pcisupport.c
+++ b/sys/pci/pcisupport.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcisupport.c,v 1.108 1999/05/09 16:32:00 peter Exp $
+** $Id: pcisupport.c,v 1.109 1999/05/10 14:07:14 n_hibma Exp $
**
** Device driver for DEC/INTEL PCI chipsets.
**
@@ -834,6 +834,8 @@ static device_method_t pcib_methods[] = {
DEVMETHOD(device_probe, pcib_probe),
DEVMETHOD(device_attach, pcib_attach),
DEVMETHOD(device_shutdown, bus_generic_shutdown),
+ DEVMETHOD(device_suspend, bus_generic_suspend),
+ DEVMETHOD(device_resume, bus_generic_resume),
/* Bus interface */
DEVMETHOD(bus_print_child, bus_generic_print_child),
@@ -974,6 +976,8 @@ static device_method_t isab_methods[] = {
DEVMETHOD(device_probe, isab_probe),
DEVMETHOD(device_attach, bus_generic_attach),
DEVMETHOD(device_shutdown, bus_generic_shutdown),
+ DEVMETHOD(device_suspend, bus_generic_suspend),
+ DEVMETHOD(device_resume, bus_generic_resume),
/* Bus interface */
DEVMETHOD(bus_print_child, bus_generic_print_child),
OpenPOWER on IntegriCloud