Re: [PATCH] drm: imx: Use of_node_name_eq for node name comparisons

2019-02-14 Thread Philipp Zabel
Hi Rob, On Wed, 2019-02-13 at 12:07 -0600, Rob Herring wrote: > On Wed, Dec 5, 2018 at 1:50 PM Rob Herring wrote: > > > > Convert string compares of DT node names to use of_node_name_eq helper > > instead. This removes direct access to the node name pointer. > > > > For instances using of_node_

Re: [PATCH] drm: imx: Use of_node_name_eq for node name comparisons

2019-02-13 Thread Rob Herring via dri-devel
On Wed, Dec 5, 2018 at 1:50 PM Rob Herring wrote: > > Convert string compares of DT node names to use of_node_name_eq helper > instead. This removes direct access to the node name pointer. > > For instances using of_node_cmp, this has the side effect of now using > case sensitive comparisons. This

[PATCH] drm: imx: Use of_node_name_eq for node name comparisons

2018-12-05 Thread Rob Herring
Convert string compares of DT node names to use of_node_name_eq helper instead. This removes direct access to the node name pointer. For instances using of_node_cmp, this has the side effect of now using case sensitive comparisons. This should not matter for any FDT based system which this is. Cc