base: Convert to using %pOF instead of full_name
authorRob Herring <robh@kernel.org>
Tue, 18 Jul 2017 21:42:49 +0000 (16:42 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Aug 2017 15:47:55 +0000 (17:47 +0200)
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/arch_topology.c

index 74043ead9da11d8a84a9ab7eaa02029263b43570..41be9ff7d70a96d7d901918c6186ea3be035f88c 100644 (file)
@@ -150,12 +150,12 @@ bool __init topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu)
                }
                capacity_scale = max(cpu_capacity, capacity_scale);
                raw_capacity[cpu] = cpu_capacity;
-               pr_debug("cpu_capacity: %s cpu_capacity=%u (raw)\n",
-                       cpu_node->full_name, raw_capacity[cpu]);
+               pr_debug("cpu_capacity: %pOF cpu_capacity=%u (raw)\n",
+                       cpu_node, raw_capacity[cpu]);
        } else {
                if (raw_capacity) {
-                       pr_err("cpu_capacity: missing %s raw capacity\n",
-                               cpu_node->full_name);
+                       pr_err("cpu_capacity: missing %pOF raw capacity\n",
+                               cpu_node);
                        pr_err("cpu_capacity: partial information: fallback to 1024 for all CPUs\n");
                }
                cap_parsing_failed = true;