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

2019-02-14 Thread Rob Herring
On Wed, Feb 13, 2019 at 9:49 PM Chanwoo Choi wrote: > > Hi Rob, > > On 19. 2. 14. 오전 1:09, 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

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

2019-02-13 Thread Chanwoo Choi
Hi Rob, On 19. 2. 14. 오전 1:09, 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_cmp, this has the

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

2019-02-13 Thread Rob Herring
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.

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

2018-12-16 Thread MyungJoo Ham
On Thu, Dec 6, 2018 at 4:54 AM 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.