Skip to content

Commit

Permalink
media: tc358743: release device_node in tc358743_probe_of()
Browse files Browse the repository at this point in the history
of_graph_get_next_endpoint() returns device_node with refcnt increased,
but these is no of_node_put() for it.

The patch adds one on error and normal paths.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <[email protected]>
Reviewed-by: Nicholas Mc Guire <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
khoroshilov authored and mchehab committed Jun 28, 2018
1 parent 9fab166 commit 64bac69
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/media/i2c/tc358743.c
Original file line number Diff line number Diff line change
Expand Up @@ -1918,7 +1918,8 @@ static int tc358743_probe_of(struct tc358743_state *state)
endpoint = v4l2_fwnode_endpoint_alloc_parse(of_fwnode_handle(ep));
if (IS_ERR(endpoint)) {
dev_err(dev, "failed to parse endpoint\n");
return PTR_ERR(endpoint);
ret = PTR_ERR(endpoint);
goto put_node;
}

if (endpoint->bus_type != V4L2_MBUS_CSI2 ||
Expand Down Expand Up @@ -2013,6 +2014,8 @@ static int tc358743_probe_of(struct tc358743_state *state)
clk_disable_unprepare(refclk);
free_endpoint:
v4l2_fwnode_endpoint_free(endpoint);
put_node:
of_node_put(ep);
return ret;
}
#else
Expand Down

0 comments on commit 64bac69

Please sign in to comment.