Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91f9241f authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab
Browse files

[media] v4l: of: Use of_get_child_by_name()



Replace a manual loop through child nodes with a call to
of_get_child_by_name().

Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 8023ed09
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -173,12 +173,8 @@ struct device_node *v4l2_of_get_next_endpoint(const struct device_node *parent,
		if (node)
			parent = node;

		for_each_child_of_node(parent, node) {
			if (!of_node_cmp(node->name, "port")) {
				port = node;
				break;
			}
		}
		port = of_get_child_by_name(parent, "port");

		if (port) {
			/* Found a port, get an endpoint. */
			endpoint = of_get_next_child(port, NULL);