diff options
author | Daniel Ritz <daniel.ritz@gmx.ch> | 2005-08-17 15:32:19 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-09-08 15:04:30 -0700 |
commit | 3fe9d19f9e86a55679f5f2b38ec0a43a1a510cee (patch) | |
tree | 96a3e57f3b61c137bb8904a08779aa8ab41c2559 /include | |
parent | cecf4864cf52a4a243a62b2856a6a155edbb55e8 (diff) | |
download | talos-op-linux-3fe9d19f9e86a55679f5f2b38ec0a43a1a510cee.tar.gz talos-op-linux-3fe9d19f9e86a55679f5f2b38ec0a43a1a510cee.zip |
[PATCH] PCI: Support PCM PM CAP version 3
- support PCI PM CAP version 3 (as defined in PCI PM Interface Spec v1.2)
- pci/probe.c sets the PM state initially to 4 which is D3cold. add a
PCI_UNKNOWN
- minor cleanups
Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index b0e244713281..7004dde7fef0 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -75,6 +75,7 @@ typedef int __bitwise pci_power_t; #define PCI_D2 ((pci_power_t __force) 2) #define PCI_D3hot ((pci_power_t __force) 3) #define PCI_D3cold ((pci_power_t __force) 4) +#define PCI_UNKNOWN ((pci_power_t __force) 5) #define PCI_POWER_ERROR ((pci_power_t __force) -1) /* |