PCI: ibmphp: Fix use-before-set in get_max_bus_speed()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 19 Apr 2018 10:05:49 +0000 (13:05 +0300)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 20 Apr 2018 17:49:24 +0000 (12:49 -0500)
commit4051f5ebb11c6ef4b0d3eac2fbbd187c070656c5
tree697d8ae693e58a9a66597bd04004be907e3886c2
parent60cc43fc888428bb2f18f08997432d426a243338
PCI: ibmphp: Fix use-before-set in get_max_bus_speed()

The "rc" variable is only initialized on the error path.  The caller
doesn't check the return but, if "rc" is non-zero, then this function is
basically a no-op.

Fixes: 3749c51ac6c1 ("PCI: Make current and maximum bus speeds part of the PCI core")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/hotplug/ibmphp_core.c