|
@@ -484,8 +484,7 @@ static inline bool pcie_cap_has_lnkctl(const struct pci_dev *dev)
|
|
|
{
|
|
|
int type = pci_pcie_type(dev);
|
|
|
|
|
|
- return pcie_cap_version(dev) > 1 ||
|
|
|
- type == PCI_EXP_TYPE_ENDPOINT ||
|
|
|
+ return type == PCI_EXP_TYPE_ENDPOINT ||
|
|
|
type == PCI_EXP_TYPE_LEG_END ||
|
|
|
type == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
type == PCI_EXP_TYPE_UPSTREAM ||
|
|
@@ -498,8 +497,7 @@ static inline bool pcie_cap_has_sltctl(const struct pci_dev *dev)
|
|
|
{
|
|
|
int type = pci_pcie_type(dev);
|
|
|
|
|
|
- return pcie_cap_version(dev) > 1 ||
|
|
|
- type == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
+ return type == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
(type == PCI_EXP_TYPE_DOWNSTREAM &&
|
|
|
pcie_caps_reg(dev) & PCI_EXP_FLAGS_SLOT);
|
|
|
}
|
|
@@ -508,8 +506,7 @@ static inline bool pcie_cap_has_rtctl(const struct pci_dev *dev)
|
|
|
{
|
|
|
int type = pci_pcie_type(dev);
|
|
|
|
|
|
- return pcie_cap_version(dev) > 1 ||
|
|
|
- type == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
+ return type == PCI_EXP_TYPE_ROOT_PORT ||
|
|
|
type == PCI_EXP_TYPE_RC_EC;
|
|
|
}
|
|
|
|