diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-07-16 09:41:53 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-08-04 00:55:43 +0300 |
commit | 89539f03061fc8aee120ea4a64d31da57d0045f2 (patch) | |
tree | 5cf3b085df68fd285302e1bcf02a6f9349ee68b8 /drivers/pci/dwc/pcie-qcom.c | |
parent | 4a301766f5263dd94c1b95d1b1bbdf338afb1a37 (diff) | |
download | linux-89539f03061fc8aee120ea4a64d31da57d0045f2.tar.xz |
PCI: qcom: Don't unroll init if ->init() fails
When the init op fails it will restore the state of the resources, so we
should not disable them one more time when this happens.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Stanimir Varbanov <svarbanov@mm-sol.com>
Diffstat (limited to 'drivers/pci/dwc/pcie-qcom.c')
-rw-r--r-- | drivers/pci/dwc/pcie-qcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/dwc/pcie-qcom.c b/drivers/pci/dwc/pcie-qcom.c index d15657dc3990..7b703741a3fd 100644 --- a/drivers/pci/dwc/pcie-qcom.c +++ b/drivers/pci/dwc/pcie-qcom.c @@ -901,7 +901,7 @@ static int qcom_pcie_host_init(struct pcie_port *pp) ret = pcie->ops->init(pcie); if (ret) - goto err_deinit; + return ret; ret = phy_power_on(pcie->phy); if (ret) |