提交 f1c66c46 编写于 作者: Y Yijing Wang 提交者: Bjorn Helgaas

PCI: Export pcie_set_mps() and pcie_get_mps()

Export pcie_get_mps() and pcie_set_mps() functions so drivers can use
them to simplify code.
Signed-off-by: NYijing Wang <wangyijing@huawei.com>
Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
上级 4a10c2ac
...@@ -3972,6 +3972,7 @@ int pcie_get_mps(struct pci_dev *dev) ...@@ -3972,6 +3972,7 @@ int pcie_get_mps(struct pci_dev *dev)
return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5); return 128 << ((ctl & PCI_EXP_DEVCTL_PAYLOAD) >> 5);
} }
EXPORT_SYMBOL(pcie_get_mps);
/** /**
* pcie_set_mps - set PCI Express maximum payload size * pcie_set_mps - set PCI Express maximum payload size
...@@ -3996,6 +3997,7 @@ int pcie_set_mps(struct pci_dev *dev, int mps) ...@@ -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, return pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
PCI_EXP_DEVCTL_PAYLOAD, v); PCI_EXP_DEVCTL_PAYLOAD, v);
} }
EXPORT_SYMBOL(pcie_set_mps);
/** /**
* pcie_get_minimum_link - determine minimum link settings of a PCI device * pcie_get_minimum_link - determine minimum link settings of a PCI device
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册