diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-29 09:17:56 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2012-08-29 09:17:56 +0000 |
commit | 48c7213316b73ff2e4f8b90d46f9f676ca752e2a (patch) | |
tree | aa1ecff3b7075ca92400a2af3f04b094b5e79409 /sys/arch/arm | |
parent | 35e5985d099287130e26618293fbfd7109548e8d (diff) |
Implement pci_min_powerstate().
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/include/pci_machdep.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/arm/include/pci_machdep.h b/sys/arch/arm/include/pci_machdep.h index 3be97188dca..c45b1eae93d 100644 --- a/sys/arch/arm/include/pci_machdep.h +++ b/sys/arch/arm/include/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.11 2011/10/10 19:42:36 miod Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.12 2012/08/29 09:17:09 kettenis Exp $ */ /* $NetBSD: pci_machdep.h,v 1.2 2002/05/15 19:23:52 thorpej Exp $ */ /* @@ -101,4 +101,6 @@ struct arm32_pci_chipset { (*(c)->pc_intr_disestablish)((c)->pc_intr_v, (iv)) #define pci_probe_device_hook(c, a) (0) +#define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3) + #define pci_dev_postattach(a, b) |