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

media: stm32-dcmi: drop unnecessary while(1) loop

The while(1) is effectively useless as all possible paths within it
return thus there is no way to loop.
Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent fdaf5958
...@@ -1567,7 +1567,6 @@ static int dcmi_graph_parse(struct stm32_dcmi *dcmi, struct device_node *node) ...@@ -1567,7 +1567,6 @@ static int dcmi_graph_parse(struct stm32_dcmi *dcmi, struct device_node *node)
struct device_node *ep = NULL; struct device_node *ep = NULL;
struct device_node *remote; struct device_node *remote;
while (1) {
ep = of_graph_get_next_endpoint(node, ep); ep = of_graph_get_next_endpoint(node, ep);
if (!ep) if (!ep)
return -EINVAL; return -EINVAL;
...@@ -1583,7 +1582,6 @@ static int dcmi_graph_parse(struct stm32_dcmi *dcmi, struct device_node *node) ...@@ -1583,7 +1582,6 @@ static int dcmi_graph_parse(struct stm32_dcmi *dcmi, struct device_node *node)
dcmi->entity.asd.match_type = V4L2_ASYNC_MATCH_FWNODE; dcmi->entity.asd.match_type = V4L2_ASYNC_MATCH_FWNODE;
dcmi->entity.asd.match.fwnode = of_fwnode_handle(remote); dcmi->entity.asd.match.fwnode = of_fwnode_handle(remote);
return 0; return 0;
}
} }
static int dcmi_graph_init(struct stm32_dcmi *dcmi) static int dcmi_graph_init(struct stm32_dcmi *dcmi)
......
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