mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-23 20:24:12 +08:00
ALSA: sparc: 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. Cc: "David S. Miller" <davem@davemloft.net> Cc: sparclinux@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
91abe6b223
commit
c23b8e7ace
@ -2075,12 +2075,12 @@ static int cs4231_ebus_probe(struct platform_device *op)
|
||||
static int cs4231_probe(struct platform_device *op)
|
||||
{
|
||||
#ifdef EBUS_SUPPORT
|
||||
if (!strcmp(op->dev.of_node->parent->name, "ebus"))
|
||||
if (of_node_name_eq(op->dev.of_node->parent, "ebus"))
|
||||
return cs4231_ebus_probe(op);
|
||||
#endif
|
||||
#ifdef SBUS_SUPPORT
|
||||
if (!strcmp(op->dev.of_node->parent->name, "sbus") ||
|
||||
!strcmp(op->dev.of_node->parent->name, "sbi"))
|
||||
if (of_node_name_eq(op->dev.of_node->parent, "sbus") ||
|
||||
of_node_name_eq(op->dev.of_node->parent, "sbi"))
|
||||
return cs4231_sbus_probe(op);
|
||||
#endif
|
||||
return -ENODEV;
|
||||
|
Loading…
Reference in New Issue
Block a user