summaryrefslogtreecommitdiff
path: root/drivers/media/v4l2-core
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2013-07-03 02:04:25 (GMT)
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-08-18 11:48:12 (GMT)
commit91f9241fd3487cd959abcf8c210af620ebfeb2cd (patch)
tree58258bc665ad7a56da9c1706c2513b04b9c227cb /drivers/media/v4l2-core
parent8023ed09cb278004a28f49844602adf23bd3615e (diff)
downloadlinux-fsl-qoriq-91f9241fd3487cd959abcf8c210af620ebfeb2cd.tar.xz
[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: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/v4l2-core')
-rw-r--r--drivers/media/v4l2-core/v4l2-of.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/media/v4l2-core/v4l2-of.c b/drivers/media/v4l2-core/v4l2-of.c
index aa59639..f64d953 100644
--- a/drivers/media/v4l2-core/v4l2-of.c
+++ b/drivers/media/v4l2-core/v4l2-of.c
@@ -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);