From: Kuninori Morimoto Date: Wed, 28 Jun 2017 00:32:17 +0000 (+0000) Subject: drm: rcar-du: Use of_graph_get_remote_endpoint() X-Git-Tag: v4.14-rc1~8^2~43^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51a99751da77419c786fe6483a429ef740298e27;p=platform%2Fkernel%2Flinux-rpi3.git drm: rcar-du: Use of_graph_get_remote_endpoint() Now, we can use of_graph_get_remote_endpoint(). Let's use it. Signed-off-by: Kuninori Morimoto Signed-off-by: Laurent Pinchart --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.c b/drivers/gpu/drm/rcar-du/rcar_du_kms.c index 5d681ea..4896189 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.c @@ -309,7 +309,7 @@ static int rcar_du_encoders_init_one(struct rcar_du_device *rcdu, return -ENODEV; } - entity_ep_node = of_parse_phandle(ep->local_node, "remote-endpoint", 0); + entity_ep_node = of_graph_get_remote_endpoint(ep->local_node); for_each_endpoint_of_node(entity, ep_node) { if (ep_node == entity_ep_node)