diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 13:56:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-18 13:56:44 -0400 |
commit | 99759619b27662d1290901228d77a293e6e83200 (patch) | |
tree | e76841fa3f59ebfc3975ff40bbc14363d0fdc5d3 /include | |
parent | b061c59c27e0385e53c961d9fbd18c1c078d9823 (diff) | |
parent | 65d8defe2e13fbebd74f96d2b5ca9aad435e6648 (diff) |
Merge branch 'linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6
* 'linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6:
PCI: label: remove #include of ACPI header to avoid warnings
PCI: label: Fix compilation error when CONFIG_ACPI is unset
PCI: pre-allocate additional resources to devices only after successful allocation of essential resources.
PCI: introduce reset_resource()
PCI: data structure agnostic free list function
PCI: refactor io size calculation code
PCI: do not create quirk I/O regions below PCIBIOS_MIN_IO for ICH
PCI hotplug: acpiphp: set current_state to D0 in register_slot
PCI: Export ACPI _DSM provided firmware instance number and string name to sysfs
PCI: add more checking to ICH region quirks
PCI: aer-inject: Override PCIe AER Mask Registers
PCI: fix tlan build when CONFIG_PCI is not enabled
PCI: remove quirk for pre-production systems
PCI: Avoid potential NULL pointer dereference in pci_scan_bridge
PCI/lpc: irq and pci_ids patch for Intel DH89xxCC DeviceIDs
PCI: sysfs: Fix failure path for addition of "vpd" attribute
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 5 | ||||
-rw-r--r-- | include/linux/pci_ids.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index ff5bccb87136..16c9f2e61977 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
@@ -1191,6 +1191,11 @@ static inline int pci_set_power_state(struct pci_dev *dev, pci_power_t state) | |||
1191 | return 0; | 1191 | return 0; |
1192 | } | 1192 | } |
1193 | 1193 | ||
1194 | static inline int pci_wake_from_d3(struct pci_dev *dev, bool enable) | ||
1195 | { | ||
1196 | return 0; | ||
1197 | } | ||
1198 | |||
1194 | static inline pci_power_t pci_choose_state(struct pci_dev *dev, | 1199 | static inline pci_power_t pci_choose_state(struct pci_dev *dev, |
1195 | pm_message_t state) | 1200 | pm_message_t state) |
1196 | { | 1201 | { |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 511e5ee809ef..bda221dfaf0a 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
@@ -2483,6 +2483,9 @@ | |||
2483 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22 | 2483 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22 |
2484 | #define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0 0x1d40 | 2484 | #define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0 0x1d40 |
2485 | #define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1 0x1d41 | 2485 | #define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1 0x1d41 |
2486 | #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN 0x2310 | ||
2487 | #define PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX 0x231f | ||
2488 | #define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330 | ||
2486 | #define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 | 2489 | #define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 |
2487 | #define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411 | 2490 | #define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411 |
2488 | #define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413 | 2491 | #define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413 |