Skip to content

Commit

Permalink
tile/PCI: use cached pci_dev->pcie_mpss to simplify code
Browse files Browse the repository at this point in the history
The PCI core caches the "PCIe Max Payload Size Supported" in
pci_dev->pcie_mpss, so use that instead of pcie_capability_read_dword().

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
  • Loading branch information
Yijing Wang authored and Bjorn Helgaas committed Sep 24, 2013
1 parent f1c66c4 commit 503275b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions arch/tile/kernel/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,12 @@ static void fixup_read_and_payload_sizes(void)
/* Scan for the smallest maximum payload size. */
for_each_pci_dev(dev) {
u32 devcap;
int max_payload;

if (!pci_is_pcie(dev))
continue;

pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &devcap);
max_payload = devcap & PCI_EXP_DEVCAP_PAYLOAD;
if (max_payload < smallest_max_payload)
smallest_max_payload = max_payload;
if (dev->pcie_mpss < smallest_max_payload)
smallest_max_payload = dev->pcie_mpss;
}

/* Now, set the max_payload_size for all devices to that value. */
Expand Down

0 comments on commit 503275b

Please sign in to comment.