|
@@ -174,7 +174,7 @@ int pci_enable_pri(struct pci_dev *pdev, u32 reqs)
|
|
|
u32 max_requests;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -205,7 +205,7 @@ void pci_disable_pri(struct pci_dev *pdev)
|
|
|
u16 control;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return;
|
|
|
|
|
@@ -226,7 +226,7 @@ bool pci_pri_enabled(struct pci_dev *pdev)
|
|
|
u16 control;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return false;
|
|
|
|
|
@@ -248,7 +248,7 @@ int pci_reset_pri(struct pci_dev *pdev)
|
|
|
u16 control;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -281,7 +281,7 @@ bool pci_pri_stopped(struct pci_dev *pdev)
|
|
|
u16 control, status;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return true;
|
|
|
|
|
@@ -310,7 +310,7 @@ int pci_pri_status(struct pci_dev *pdev)
|
|
|
u16 status, control;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PRI_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PRI);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -341,7 +341,7 @@ int pci_enable_pasid(struct pci_dev *pdev, int features)
|
|
|
u16 control, supported;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -375,7 +375,7 @@ void pci_disable_pasid(struct pci_dev *pdev)
|
|
|
u16 control = 0;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
|
|
|
if (!pos)
|
|
|
return;
|
|
|
|
|
@@ -399,7 +399,7 @@ int pci_pasid_features(struct pci_dev *pdev)
|
|
|
u16 supported;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -425,7 +425,7 @@ int pci_max_pasids(struct pci_dev *pdev)
|
|
|
u16 supported;
|
|
|
int pos;
|
|
|
|
|
|
- pos = pci_find_ext_capability(pdev, PCI_PASID_CAP);
|
|
|
+ pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_PASID);
|
|
|
if (!pos)
|
|
|
return -EINVAL;
|
|
|
|