mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-10 12:57:06 +09:00
remoteproc: qcom_q6v5_mss: fix a bug in q6v5_probe()
[ Upstream commit 13c060b50a ]
If looking up the DT "firmware-name" property fails in q6v6_probe(),
the function returns without freeing the remoteproc structure
that has been allocated. Fix this by jumping to the free_rproc
label, which takes care of this.
Signed-off-by: Alex Elder <elder@linaro.org>
Link: https://lore.kernel.org/r/20200403175005.17130-3-elder@linaro.org
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b2978c3076
commit
a09ba140db
@@ -1440,7 +1440,7 @@ static int q6v5_probe(struct platform_device *pdev)
|
||||
ret = of_property_read_string_index(pdev->dev.of_node, "firmware-name",
|
||||
1, &qproc->hexagon_mdt_image);
|
||||
if (ret < 0 && ret != -EINVAL)
|
||||
return ret;
|
||||
goto free_rproc;
|
||||
|
||||
platform_set_drvdata(pdev, qproc);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user