diff options
| author | Stephane E. Potvin <sepotvin@FreeBSD.org> | 2007-09-19 13:05:58 +0000 |
|---|---|---|
| committer | Stephane E. Potvin <sepotvin@FreeBSD.org> | 2007-09-19 13:05:58 +0000 |
| commit | 1a2952820df014b7171789649af186ab868d1df2 (patch) | |
| tree | 487f7d29478afc053ce21c6e1516496af9345715 /sys/dev/pci | |
| parent | a0b65c7be0c12cb6a931d9bd08941c6ffcfd19ce (diff) | |
Notes
Diffstat (limited to 'sys/dev/pci')
| -rw-r--r-- | sys/dev/pci/pcireg.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/pci/pcireg.h b/sys/dev/pci/pcireg.h index c6d61bd75bdf..6ec6600a564a 100644 --- a/sys/dev/pci/pcireg.h +++ b/sys/dev/pci/pcireg.h @@ -402,9 +402,11 @@ #define PCIM_PCAP_REQFULLCLOCK 0x0100 #define PCIM_PCAP_D1SUPP 0x0200 #define PCIM_PCAP_D2SUPP 0x0400 -#define PCIM_PCAP_D0PME 0x1000 -#define PCIM_PCAP_D1PME 0x2000 -#define PCIM_PCAP_D2PME 0x4000 +#define PCIM_PCAP_D0PME 0x0800 +#define PCIM_PCAP_D1PME 0x1000 +#define PCIM_PCAP_D2PME 0x2000 +#define PCIM_PCAP_D3PME_HOT 0x4000 +#define PCIM_PCAP_D3PME_COLD 0x8000 #define PCIR_POWER_STATUS 0x4 #define PCIM_PSTAT_D0 0x0000 |
