Re: [PATCH v4 07/13] drm/bridge: lvds-codec: Simplify panel DT node localisation

2019-11-18 Thread Laurent Pinchart
Hi Fabrizio, Thank you for the patch. On Wed, Nov 13, 2019 at 03:51:26PM +, Fabrizio Castro wrote: > The probe function needs to get ahold of the panel device tree > node, and it achieves that by using a combination of > of_graph_get_port_by_id, of_get_child_by_name, and > of_graph_get_remote

[PATCH v4 07/13] drm/bridge: lvds-codec: Simplify panel DT node localisation

2019-11-14 Thread Fabrizio Castro
The probe function needs to get ahold of the panel device tree node, and it achieves that by using a combination of of_graph_get_port_by_id, of_get_child_by_name, and of_graph_get_remote_port_parent. We can achieve the same goal by replacing those calls with a call to of_graph_get_remote_node these