Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.

Signed-off-by: Rob Herring <r...@kernel.org>
Cc: Stuart Yoder <stuyo...@gmail.com>
Cc: Laurentiu Tudor <laurentiu.tu...@nxp.com>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
Cc: de...@driverdev.osuosl.org
---
 drivers/staging/fsl-mc/bus/fsl-mc-bus.c                | 4 ++--
 drivers/staging/fsl-mc/bus/fsl-mc-msi.c                | 4 ++--
 drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c | 8 +++-----
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/fsl-mc/bus/fsl-mc-bus.c 
b/drivers/staging/fsl-mc/bus/fsl-mc-bus.c
index 19606e8d25dd..409f2b9e70ff 100644
--- a/drivers/staging/fsl-mc/bus/fsl-mc-bus.c
+++ b/drivers/staging/fsl-mc/bus/fsl-mc-bus.c
@@ -757,8 +757,8 @@ static int fsl_mc_bus_probe(struct platform_device *pdev)
        error = of_address_to_resource(pdev->dev.of_node, 0, &res);
        if (error < 0) {
                dev_err(&pdev->dev,
-                       "of_address_to_resource() failed for %s\n",
-                       pdev->dev.of_node->full_name);
+                       "of_address_to_resource() failed for %pOF\n",
+                       pdev->dev.of_node);
                return error;
        }

diff --git a/drivers/staging/fsl-mc/bus/fsl-mc-msi.c 
b/drivers/staging/fsl-mc/bus/fsl-mc-msi.c
index c04a2f2b3409..49f95123b5c7 100644
--- a/drivers/staging/fsl-mc/bus/fsl-mc-msi.c
+++ b/drivers/staging/fsl-mc/bus/fsl-mc-msi.c
@@ -183,8 +183,8 @@ int fsl_mc_find_msi_domain(struct device *mc_platform_dev,
        msi_domain = of_msi_get_domain(mc_platform_dev, mc_of_node,
                                       DOMAIN_BUS_FSL_MC_MSI);
        if (!msi_domain) {
-               pr_err("Unable to find fsl-mc MSI domain for %s\n",
-                      mc_of_node->full_name);
+               pr_err("Unable to find fsl-mc MSI domain for %pOF\n",
+                      mc_of_node);

                return -ENOENT;
        }
diff --git a/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c 
b/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
index 865d38517508..e49dcde480fc 100644
--- a/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
+++ b/drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c
@@ -79,8 +79,7 @@ int __init its_fsl_mc_msi_init(void)

                parent = irq_find_matching_host(np, DOMAIN_BUS_NEXUS);
                if (!parent || !msi_get_domain_info(parent)) {
-                       pr_err("%s: unable to locate ITS domain\n",
-                              np->full_name);
+                       pr_err("%pOF: unable to locate ITS domain\n", np);
                        continue;
                }

@@ -89,15 +88,14 @@ int __init its_fsl_mc_msi_init(void)
                                                 &its_fsl_mc_msi_domain_info,
                                                 parent);
                if (!mc_msi_domain) {
-                       pr_err("%s: unable to create fsl-mc domain\n",
-                              np->full_name);
+                       pr_err("%pOF: unable to create fsl-mc domain\n", np);
                        continue;
                }

                WARN_ON(mc_msi_domain->host_data !=
                        &its_fsl_mc_msi_domain_info);

-               pr_info("fsl-mc MSI: %s domain created\n", np->full_name);
+               pr_info("fsl-mc MSI: %pOF domain created\n", np);
        }

        return 0;
--
2.11.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to