Commit 0952c57c authored by Rob Herring's avatar Rob Herring Committed by Greg Kroah-Hartman

uio: Convert to using %pOFn instead of device_node.name

In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ca6ac25c
...@@ -382,8 +382,7 @@ static int uio_fsl_elbc_gpcm_probe(struct platform_device *pdev) ...@@ -382,8 +382,7 @@ static int uio_fsl_elbc_gpcm_probe(struct platform_device *pdev)
} }
/* set all UIO data */ /* set all UIO data */
if (node->name) info->mem[0].name = kasprintf(GFP_KERNEL, "%pOFn", node);
info->mem[0].name = kstrdup(node->name, GFP_KERNEL);
info->mem[0].addr = res.start; info->mem[0].addr = res.start;
info->mem[0].size = resource_size(&res); info->mem[0].size = resource_size(&res);
info->mem[0].memtype = UIO_MEM_PHYS; info->mem[0].memtype = UIO_MEM_PHYS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment