diff options
author | Johan Hovold <johan+linaro@kernel.org> | 2022-09-28 17:54:21 +0200 |
---|---|---|
committer | Lorenzo Pieralisi <lpieralisi@kernel.org> | 2022-09-29 10:34:47 +0200 |
commit | 0e4d9a5cc7670d59e73cc372263a7417330aa56f (patch) | |
tree | 4220bbc239c686ac6557e4a271a7ef896bf91017 /drivers | |
parent | PCI: qcom: Drop unused post_deinit callback (diff) | |
download | linux-0e4d9a5cc7670d59e73cc372263a7417330aa56f.tar.xz linux-0e4d9a5cc7670d59e73cc372263a7417330aa56f.zip |
PCI: qcom: Rename host-init error label
Use a more descriptive name for the reset host-init error label for
consistency.
Link: https://lore.kernel.org/r/20220928155421.21660-3-johan+linaro@kernel.org
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Signed-off-by: Lorenzo Pieralisi <lpieralisi@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/controller/dwc/pcie-qcom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/controller/dwc/pcie-qcom.c b/drivers/pci/controller/dwc/pcie-qcom.c index 8d6df0db4ebb..f711acacaeaf 100644 --- a/drivers/pci/controller/dwc/pcie-qcom.c +++ b/drivers/pci/controller/dwc/pcie-qcom.c @@ -1512,12 +1512,12 @@ static int qcom_pcie_host_init(struct dw_pcie_rp *pp) if (pcie->cfg->ops->config_sid) { ret = pcie->cfg->ops->config_sid(pcie); if (ret) - goto err; + goto err_assert_reset; } return 0; -err: +err_assert_reset: qcom_ep_reset_assert(pcie); err_disable_phy: phy_power_off(pcie->phy); |