]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - arch/arm/kernel/devtree.c
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[mirror_ubuntu-bionic-kernel.git] / arch / arm / kernel / devtree.c
index f676febbb2706caaaa2856691032e415b4aa8d46..ecaa68dd1af52c9e1afd994978d70ddad7400b75 100644 (file)
@@ -95,7 +95,7 @@ void __init arm_dt_init_cpu_maps(void)
                if (of_node_cmp(cpu->type, "cpu"))
                        continue;
 
-               pr_debug(" * %s...\n", cpu->full_name);
+               pr_debug(" * %pOF...\n", cpu);
                /*
                 * A device tree containing CPU nodes with missing "reg"
                 * properties is considered invalid to build the
@@ -103,8 +103,7 @@ void __init arm_dt_init_cpu_maps(void)
                 */
                cell = of_get_property(cpu, "reg", &prop_bytes);
                if (!cell || prop_bytes < sizeof(*cell)) {
-                       pr_debug(" * %s missing reg property\n",
-                                    cpu->full_name);
+                       pr_debug(" * %pOF missing reg property\n", cpu);
                        of_node_put(cpu);
                        return;
                }