mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 15:27:29 +00:00
fs/openpromfs: Use of_node_name_eq for node name comparisons
Convert string compares of DT node names to use of_node_name_eq helper instead. This removes direct access to the node name pointer. Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
105e996a83
commit
f3180e1828
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ found:
|
|||
set_nlink(inode, 2);
|
||||
break;
|
||||
case op_inode_prop:
|
||||
if (!strcmp(dp->name, "options") && (len == 17) &&
|
||||
if (of_node_name_eq(dp, "options") && (len == 17) &&
|
||||
!strncmp (name, "security-password", 17))
|
||||
inode->i_mode = S_IFREG | S_IRUSR | S_IWUSR;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue