aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/pci.c
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1999-05-10 17:56:23 +0000
committerDoug Rabson <dfr@FreeBSD.org>1999-05-10 17:56:23 +0000
commit41787a353dea2c88bf317a8df919490d64bf842c (patch)
tree9f1eb907b0e83e8670316aadaeb728a9338b776b /sys/pci/pci.c
parentb57947c947f00711742b339d1614e5b8ec80afa8 (diff)
downloadsrc-41787a353dea2c88bf317a8df919490d64bf842c.tar.gz
src-41787a353dea2c88bf317a8df919490d64bf842c.zip
Add missing suspend/resume methods.
Notes
Notes: svn path=/head/; revision=46917
Diffstat (limited to 'sys/pci/pci.c')
-rw-r--r--sys/pci/pci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/pci/pci.c b/sys/pci/pci.c
index 71897e319046..3583a98562ea 100644
--- a/sys/pci/pci.c
+++ b/sys/pci/pci.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pci.c,v 1.101 1999/05/09 15:54:04 peter Exp $
+ * $Id: pci.c,v 1.102 1999/05/09 20:27:26 peter Exp $
*
*/
@@ -1344,6 +1344,8 @@ static device_method_t pci_methods[] = {
DEVMETHOD(device_probe, pci_new_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, pci_print_child),