diff options
author | Keith Busch <keith.busch@intel.com> | 2016-05-02 23:10:31 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-05-03 18:35:49 +0300 |
commit | 10126ac14d36e74b2705802dc915b0b18463a51f (patch) | |
tree | 9cff4695f03085209d3ebf71ecfdc1cd50054756 /drivers/pci/pcie/portdrv_acpi.c | |
parent | 6d81417da8720b393f670de9cce03a3642ea9a30 (diff) | |
download | linux-10126ac14d36e74b2705802dc915b0b18463a51f.tar.xz |
PCI: Add Downstream Port Containment portdrv service type
Add the Downstream Port Containment (PCIE_PORT_SERVICE_DPC) portdrv service
type, available if the device has the DPC extended capability.
[bhelgaas: split to separate patch, changelog]
Signed-off-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/pcie/portdrv_acpi.c')
-rw-r--r-- | drivers/pci/pcie/portdrv_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pcie/portdrv_acpi.c b/drivers/pci/pcie/portdrv_acpi.c index b4d2894ee3fc..44296eb729d3 100644 --- a/drivers/pci/pcie/portdrv_acpi.c +++ b/drivers/pci/pcie/portdrv_acpi.c @@ -51,7 +51,7 @@ int pcie_port_acpi_setup(struct pci_dev *port, int *srv_mask) flags = root->osc_control_set; - *srv_mask = PCIE_PORT_SERVICE_VC; + *srv_mask = PCIE_PORT_SERVICE_VC | PCIE_PORT_SERVICE_DPC; if (flags & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL) *srv_mask |= PCIE_PORT_SERVICE_HP; if (flags & OSC_PCI_EXPRESS_PME_CONTROL) |