perf: Convert to using %pOFn instead of device_node.name
authorRob Herring <[email protected]>
Tue, 28 Aug 2018 01:52:39 +0000 (20:52 -0500)
committerCatalin Marinas <[email protected]>
Mon, 1 Oct 2018 10:33:17 +0000 (11:33 +0100)
In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.

Cc: Mark Rutland <[email protected]>
Cc: [email protected]
Acked-by: Will Deacon <[email protected]>
Signed-off-by: Rob Herring <[email protected]>
Signed-off-by: Catalin Marinas <[email protected]>
drivers/perf/arm_pmu_platform.c

index 96075cecb0aecdae90a7ff1fae0c41de0e8c5922..933bd8410fc2afa94eb186c6be3c58148ea41837 100644 (file)
@@ -77,14 +77,14 @@ static int pmu_parse_irq_affinity(struct device_node *node, int i)
 
        dn = of_parse_phandle(node, "interrupt-affinity", i);
        if (!dn) {
-               pr_warn("failed to parse interrupt-affinity[%d] for %s\n",
-                       i, node->name);
+               pr_warn("failed to parse interrupt-affinity[%d] for %pOFn\n",
+                       i, node);
                return -EINVAL;
        }
 
        cpu = of_cpu_node_to_id(dn);
        if (cpu < 0) {
-               pr_warn("failed to find logical CPU for %s\n", dn->name);
+               pr_warn("failed to find logical CPU for %pOFn\n", dn);
                cpu = nr_cpu_ids;
        }