Explorar o código

PCI/portdrv: Use PCI Express Capability accessors

Use PCI Express Capability access functions to simplify portdrv.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Bjorn Helgaas %!s(int64=12) %!d(string=hai) anos
pai
achega
33e8b34fdd
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      drivers/pci/pcie/portdrv_core.c

+ 1 - 2
drivers/pci/pcie/portdrv_core.c

@@ -120,8 +120,7 @@ static int pcie_port_enable_msix(struct pci_dev *dev, int *vectors, int mask)
 		 * the value in this field indicates which MSI-X Table entry is
 		 * used to generate the interrupt message."
 		 */
-		pos = pci_pcie_cap(dev);
-		pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &reg16);
+		pcie_capability_read_word(dev, PCI_EXP_FLAGS, &reg16);
 		entry = (reg16 & PCI_EXP_FLAGS_IRQ) >> 9;
 		if (entry >= nr_entries)
 			goto Error;