From: Christophe JAILLET Date: Wed, 14 Mar 2018 19:56:37 +0000 (+0100) Subject: remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()' X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=35a4f782b521c583cab615fba04bde9b4d4ed205;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()' [ Upstream commit de6f83f85be94e0b7d0d324c29ccc9d78a6bb4e7 ] If 'of_device_get_match_data()' fails, we must undo the previous 'rproc_alloc()' call. Fixes: a0ff4aa6f010 ("remoteproc: imx_rproc: add a NXP/Freescale imx_rproc driver") Signed-off-by: Christophe JAILLET Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/remoteproc/imx_rproc.c b/drivers/remoteproc/imx_rproc.c index 633268e9d550..05bcbce2013a 100644 --- a/drivers/remoteproc/imx_rproc.c +++ b/drivers/remoteproc/imx_rproc.c @@ -339,8 +339,10 @@ static int imx_rproc_probe(struct platform_device *pdev) } dcfg = of_device_get_match_data(dev); - if (!dcfg) - return -EINVAL; + if (!dcfg) { + ret = -EINVAL; + goto err_put_rproc; + } priv = rproc->priv; priv->rproc = rproc;