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: Nicholas Mc Guire <hofrat@opentech.at>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
Nicholas Mc Guire 2018-06-01 05:21:32 -04:00 коммит произвёл Mauro Carvalho Chehab
Родитель 7fc77a2fda
Коммит e32eb0d8a6
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -3108,12 +3108,9 @@ static int adv76xx_parse_dt(struct adv76xx_state *state)
return -EINVAL;
ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(endpoint), &bus_cfg);
if (ret) {
of_node_put(endpoint);
return ret;
}
of_node_put(endpoint);
if (ret)
return ret;
if (!of_property_read_u32(np, "default-input", &v))
state->pdata.default_input = v;