Re: [PATCH] regulator: Use of_node_name_eq for node name comparisons

2019-03-13 Thread Lucas Stach
Hi Fabio, Am Mittwoch, den 13.03.2019, 14:36 -0300 schrieb Fabio Estevam: > Hi Lucas, > > > On Wed, Mar 13, 2019 at 2:22 PM Lucas Stach wrote: > > > Unfortunately this change causes a regression on systems with MC13xxx > > regulators. The desc.name field is filled with an uppercase name of the

Re: [PATCH] regulator: Use of_node_name_eq for node name comparisons

2019-03-13 Thread Fabio Estevam
Hi Lucas, On Wed, Mar 13, 2019 at 2:22 PM Lucas Stach wrote: > Unfortunately this change causes a regression on systems with MC13xxx > regulators. The desc.name field is filled with an uppercase name of the > regulator, while the existing DTs (as far as I know) all use lowercase > node names,

Re: [PATCH] regulator: Use of_node_name_eq for node name comparisons

2019-03-13 Thread Lucas Stach
Hi Rob, hi Mark, Am Mittwoch, den 05.12.2018, 13:50 -0600 schrieb 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 >

RE: [PATCH] regulator: Use of_node_name_eq for node name comparisons

2018-12-05 Thread Adam Thomson
On 05 December 2018 19:51, 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

RE: [PATCH] regulator: Use of_node_name_eq for node name comparisons

2018-12-05 Thread Adam Thomson
On 05 December 2018 19:51, 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