diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-08-17 19:14:53 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-08-17 19:14:53 +0000 |
commit | 5268c49d0fb645ef2cbc307c2a6d81bfa902a58b (patch) | |
tree | 1e674868071627714098692976474431f9ba29d1 /sys/dev/pci/pcivar.h | |
parent | 7f00f673b9f13763b9642e62566597f9551ddff7 (diff) |
Power management for PCI devices. For now just put everything in the D3
(deepest sleep) state upon suspend, and restore power upon resume.
ok deraadt@
Diffstat (limited to 'sys/dev/pci/pcivar.h')
-rw-r--r-- | sys/dev/pci/pcivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h index 6566e50d061..8a0d45e30fc 100644 --- a/sys/dev/pci/pcivar.h +++ b/sys/dev/pci/pcivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcivar.h,v 1.59 2009/05/05 14:16:17 kettenis Exp $ */ +/* $OpenBSD: pcivar.h,v 1.60 2010/08/17 19:14:52 kettenis Exp $ */ /* $NetBSD: pcivar.h,v 1.23 1997/06/06 23:48:05 thorpej Exp $ */ /* @@ -236,6 +236,7 @@ struct pci_matchid { }; int pci_matchbyid(struct pci_attach_args *, const struct pci_matchid *, int); +int pci_get_powerstate(pci_chipset_tag_t, pcitag_t); int pci_set_powerstate(pci_chipset_tag_t, pcitag_t, int); /* |