14 Jun
2016
14 Jun
'16
10:39 a.m.
On 13 June 2016 20:33, Frank Rowand wrote:
DT node names are case insensitive. The of.h header does provide a helper macro which is equivalent to this, but that macro is part of the '#ifdef CONFIG_OF' block. If I were to use it then it would cause non-DT builds to fail. I opted for strcasecmp() directly as I didn't think for just this one scenario it made sense to reorganise the of.h header with regards to the helper macros. Of course if there are other opinions on this then am happy to listen.
DT node names are not always case insensitive. Please us of_node_cmp().
-Frank
Ok, fair enough. I'll have to move those definitions in the of.h header out of the CONFIG_OF block then.