Commit 14ef829f authored by Chuhong Yuan's avatar Chuhong Yuan Committed by Kleber Sacilotto de Souza

dmaengine: ti: edma: fix missed failure handling

BugLink: https://bugs.launchpad.net/bugs/1864773

[ Upstream commit 340049d4 ]

When devm_kcalloc fails, it forgets to call edma_free_slot.
Replace direct return with failure handler to fix it.

Fixes: 1be5336b ("dmaengine: edma: New device tree binding")
Signed-off-by: default avatarChuhong Yuan <hslester96@gmail.com>
Link: https://lore.kernel.org/r/20191118073802.28424-1-hslester96@gmail.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarKhalid Elmously <khalid.elmously@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent 4702ce14
...@@ -2288,8 +2288,10 @@ static int edma_probe(struct platform_device *pdev) ...@@ -2288,8 +2288,10 @@ static int edma_probe(struct platform_device *pdev)
ecc->tc_list = devm_kcalloc(dev, ecc->num_tc, ecc->tc_list = devm_kcalloc(dev, ecc->num_tc,
sizeof(*ecc->tc_list), GFP_KERNEL); sizeof(*ecc->tc_list), GFP_KERNEL);
if (!ecc->tc_list) if (!ecc->tc_list) {
return -ENOMEM; ret = -ENOMEM;
goto err_reg1;
}
for (i = 0;; i++) { for (i = 0;; i++) {
ret = of_parse_phandle_with_fixed_args(node, "ti,tptcs", ret = of_parse_phandle_with_fixed_args(node, "ti,tptcs",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment