Skip to content

Commit

Permalink
media: mtk-mdp: Fix a refcounting bug on error in init
Browse files Browse the repository at this point in the history
We need to call of_node_put(comp->dev_node); on the error paths in this
function.

Fixes: c8eb2d7 ("[media] media: Add Mediatek MDP Driver")
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Dan Carpenter authored and sigmaris committed Aug 8, 2020
1 parent 0221104 commit 06fd02a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions drivers/media/platform/mtk-mdp/mtk_mdp_comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ int mtk_mdp_comp_init(struct device *dev, struct device_node *node,
{
struct device_node *larb_node;
struct platform_device *larb_pdev;
int ret;
int i;

comp->dev_node = of_node_get(node);
Expand All @@ -67,8 +68,8 @@ int mtk_mdp_comp_init(struct device *dev, struct device_node *node,
if (IS_ERR(comp->clk[i])) {
if (PTR_ERR(comp->clk[i]) != -EPROBE_DEFER)
dev_err(dev, "Failed to get clock\n");

return PTR_ERR(comp->clk[i]);
ret = PTR_ERR(comp->clk[i]);
goto put_dev;
}

/* Only RDMA needs two clocks */
Expand All @@ -87,20 +88,27 @@ int mtk_mdp_comp_init(struct device *dev, struct device_node *node,
if (!larb_node) {
dev_err(dev,
"Missing mediadek,larb phandle in %pOF node\n", node);
return -EINVAL;
ret = -EINVAL;
goto put_dev;
}

larb_pdev = of_find_device_by_node(larb_node);
if (!larb_pdev) {
dev_warn(dev, "Waiting for larb device %pOF\n", larb_node);
of_node_put(larb_node);
return -EPROBE_DEFER;
ret = -EPROBE_DEFER;
goto put_dev;
}
of_node_put(larb_node);

comp->larb_dev = &larb_pdev->dev;

return 0;

put_dev:
of_node_put(comp->dev_node);

return ret;
}

void mtk_mdp_comp_deinit(struct device *dev, struct mtk_mdp_comp *comp)
Expand Down

0 comments on commit 06fd02a

Please sign in to comment.