staging: fsl-mc: Convert to using %pOF instead of full_name
authorRob Herring <robh@kernel.org>
Tue, 18 Jul 2017 21:43:33 +0000 (16:43 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 30 Jul 2017 14:59:32 +0000 (07:59 -0700)
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 <robh@kernel.org>
Cc: Stuart Yoder <stuyoder@gmail.com>
Cc: Laurentiu Tudor <laurentiu.tudor@nxp.com>
Cc: devel@driverdev.osuosl.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-mc/bus/fsl-mc-bus.c
drivers/staging/fsl-mc/bus/fsl-mc-msi.c
drivers/staging/fsl-mc/bus/irq-gic-v3-its-fsl-mc-msi.c

index 19606e8d25dddfb4c6037e56034624a73f22c53b..409f2b9e70ff6a786378dbc3f3878dbe92b4e736 100644 (file)
@@ -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;
        }
 
index c04a2f2b3409a17b6cc85523de441996ad958500..49f95123b5c7d2d34ba79a9132c2496430bb8b5a 100644 (file)
@@ -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;
        }
index 865d385175086115daacf5723b32188253f79044..e49dcde480fc578084d61c773e4e939a6864a189 100644 (file)
@@ -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;