After commit 59875ae489, pcie_get_mps() will never return Negative value. So remove the unnecessary check code. Signed-off-by: Yijing Wang <wangyijing@xxxxxxxxxx> --- drivers/pci/pci.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index a8d5fd0..84a3c09 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -3586,8 +3586,6 @@ int pcie_set_readrq(struct pci_dev *dev, int rq) if (pcie_bus_config == PCIE_BUS_PERFORMANCE) { int mps = pcie_get_mps(dev); - if (mps < 0) - return mps; if (mps < rq) rq = mps; } -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html