Skip to content

Commit

Permalink
PCI: Export pcie_set_mps() and pcie_get_mps()
Browse files Browse the repository at this point in the history
Export pcie_get_mps() and pcie_set_mps() functions so drivers can use
them to simplify code.

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 4a10c2a commit f1c66c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/pci/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -3972,6 +3972,7 @@ int pcie_get_mps(struct pci_dev *dev)

return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
}
EXPORT_SYMBOL(pcie_get_mps);

/**
* pcie_set_mps - set PCI Express maximum payload size
Expand All @@ -3996,6 +3997,7 @@ int pcie_set_mps(struct pci_dev *dev, int mps)
return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
PCI_EXP_DEVCTL_PAYLOAD, v);
}
EXPORT_SYMBOL(pcie_set_mps);

/**
* pcie_get_minimum_link - determine minimum link settings of a PCI device
Expand Down

0 comments on commit f1c66c4

Please sign in to comment.