diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-09-07 19:23:54 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-09-07 19:23:54 +0000 |
commit | 9670d78d8166a9c529cde3b99982a2c0d841768d (patch) | |
tree | eb7e7d6b9962f518f9e671e160d258ffc4397b9a /sys/arch/amd64 | |
parent | 3e3ba5e5a288a24670663a576b086752354d390b (diff) |
Implement pci_min_powerstate().
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/include/pci_machdep.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/amd64/include/pci_machdep.h b/sys/arch/amd64/include/pci_machdep.h index 939398f7002..9a41a1e1493 100644 --- a/sys/arch/amd64/include/pci_machdep.h +++ b/sys/arch/amd64/include/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.19 2011/10/10 19:42:36 miod Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.20 2012/09/07 19:23:16 kettenis Exp $ */ /* $NetBSD: pci_machdep.h,v 1.1 2003/02/26 21:26:11 fvdl Exp $ */ /* @@ -93,6 +93,8 @@ void pci_decompose_tag(pci_chipset_tag_t, pcitag_t, void pci_dev_postattach(struct device *, struct pci_attach_args *); +pcireg_t pci_min_powerstate(pci_chipset_tag_t, pcitag_t); + /* * ALL OF THE FOLLOWING ARE MACHINE-DEPENDENT, AND SHOULD NOT BE USED * BY PORTABLE CODE. |