]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
PCI: cadence: Add cdns_plat_pcie_probe() missing return
authorLi Chen <lchen@ambarella.com>
Thu, 21 Oct 2021 02:50:19 +0000 (02:50 +0000)
committerAndrea Righi <andrea.righi@canonical.com>
Tue, 7 Dec 2021 06:32:36 +0000 (07:32 +0100)
BugLink: https://bugs.launchpad.net/bugs/1951822
commit 27cd7e3c9bb1ae13bc16f08138edd6e4df3cd211 upstream.

When cdns_plat_pcie_probe() succeeds, return success instead of falling
into the error handling code.

Fixes: bd22885aa188 ("PCI: cadence: Refactor driver to use as a core library")
Link: https://lore.kernel.org/r/DM6PR19MB40271B93057D949310F0B0EDA0BF9@DM6PR19MB4027.namprd19.prod.outlook.com
Signed-off-by: Xuliang Zhang <xlzhanga@ambarella.com>
Signed-off-by: Li Chen <lchen@ambarella.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/pci/controller/cadence/pcie-cadence-plat.c

index 5fee0f89ab594888e55a154c5e133e11262b97d4..a224afadbcc005099efe20f3a429cec96183b2d0 100644 (file)
@@ -127,6 +127,8 @@ static int cdns_plat_pcie_probe(struct platform_device *pdev)
                        goto err_init;
        }
 
+       return 0;
+
  err_init:
  err_get_sync:
        pm_runtime_put_sync(dev);