Commit e32eb0d8 authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Mauro Carvalho Chehab

media: adv7604: simplify of_node_put()

As the of_node_put() is unconditional here there is no need to have it
twice.
Signed-off-by: default avatarNicholas Mc Guire <hofrat@opentech.at>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 7fc77a2f
...@@ -3108,12 +3108,9 @@ static int adv76xx_parse_dt(struct adv76xx_state *state) ...@@ -3108,12 +3108,9 @@ static int adv76xx_parse_dt(struct adv76xx_state *state)
return -EINVAL; return -EINVAL;
ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint), &bus_cfg); ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint), &bus_cfg);
if (ret) {
of_node_put(endpoint);
return ret;
}
of_node_put(endpoint); of_node_put(endpoint);
if (ret)
return ret;
if (!of_property_read_u32(np, "default-input", &v)) if (!of_property_read_u32(np, "default-input", &v))
state->pdata.default_input = v; state->pdata.default_input = v;
......
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