Commit a8e65e06 authored by Rob Herring's avatar Rob Herring Committed by Arnd Bergmann

ARM: Convert to using %pOF instead of full_name

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: default avatarRob Herring <robh@kernel.org>
Acked-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Acked-by: default avatarHeiko Stuebner <heiko@sntech.de>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Acked-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
Acked-by: default avatarShawn Guo <shawnguo@kernel.org>
Acked-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Kukjin Kim <kgene@kernel.org>
Cc: Javier Martinez Canillas <javier@osg.samsung.com>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: "Benoît Cousson" <bcousson@baylibre.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Magnus Damm <magnus.damm@gmail.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent bbc7c1db
...@@ -101,8 +101,8 @@ static int __init arm_cpuidle_read_ops(struct device_node *dn, int cpu) ...@@ -101,8 +101,8 @@ static int __init arm_cpuidle_read_ops(struct device_node *dn, int cpu)
ops = arm_cpuidle_get_ops(enable_method); ops = arm_cpuidle_get_ops(enable_method);
if (!ops) { if (!ops) {
pr_warn("%s: unsupported enable-method property: %s\n", pr_warn("%pOF: unsupported enable-method property: %s\n",
dn->full_name, enable_method); dn, enable_method);
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
......
...@@ -95,7 +95,7 @@ void __init arm_dt_init_cpu_maps(void) ...@@ -95,7 +95,7 @@ void __init arm_dt_init_cpu_maps(void)
if (of_node_cmp(cpu->type, "cpu")) if (of_node_cmp(cpu->type, "cpu"))
continue; continue;
pr_debug(" * %s...\n", cpu->full_name); pr_debug(" * %pOF...\n", cpu);
/* /*
* A device tree containing CPU nodes with missing "reg" * A device tree containing CPU nodes with missing "reg"
* properties is considered invalid to build the * properties is considered invalid to build the
...@@ -103,8 +103,7 @@ void __init arm_dt_init_cpu_maps(void) ...@@ -103,8 +103,7 @@ void __init arm_dt_init_cpu_maps(void)
*/ */
cell = of_get_property(cpu, "reg", &prop_bytes); cell = of_get_property(cpu, "reg", &prop_bytes);
if (!cell || prop_bytes < sizeof(*cell)) { if (!cell || prop_bytes < sizeof(*cell)) {
pr_debug(" * %s missing reg property\n", pr_debug(" * %pOF missing reg property\n", cpu);
cpu->full_name);
of_node_put(cpu); of_node_put(cpu);
return; return;
} }
......
...@@ -127,8 +127,7 @@ static void __init parse_dt_topology(void) ...@@ -127,8 +127,7 @@ static void __init parse_dt_topology(void)
rate = of_get_property(cn, "clock-frequency", &len); rate = of_get_property(cn, "clock-frequency", &len);
if (!rate || len != 4) { if (!rate || len != 4) {
pr_err("%s missing clock-frequency property\n", pr_err("%pOF missing clock-frequency property\n", cn);
cn->full_name);
continue; continue;
} }
......
...@@ -187,21 +187,20 @@ static int __init exynos_pmu_irq_init(struct device_node *node, ...@@ -187,21 +187,20 @@ static int __init exynos_pmu_irq_init(struct device_node *node,
struct irq_domain *parent_domain, *domain; struct irq_domain *parent_domain, *domain;
if (!parent) { if (!parent) {
pr_err("%s: no parent, giving up\n", node->full_name); pr_err("%pOF: no parent, giving up\n", node);
return -ENODEV; return -ENODEV;
} }
parent_domain = irq_find_host(parent); parent_domain = irq_find_host(parent);
if (!parent_domain) { if (!parent_domain) {
pr_err("%s: unable to obtain parent domain\n", node->full_name); pr_err("%pOF: unable to obtain parent domain\n", node);
return -ENXIO; return -ENXIO;
} }
pmu_base_addr = of_iomap(node, 0); pmu_base_addr = of_iomap(node, 0);
if (!pmu_base_addr) { if (!pmu_base_addr) {
pr_err("%s: failed to find exynos pmu register\n", pr_err("%pOF: failed to find exynos pmu register\n", node);
node->full_name);
return -ENOMEM; return -ENOMEM;
} }
......
...@@ -224,13 +224,13 @@ static int __init imx_gpc_init(struct device_node *node, ...@@ -224,13 +224,13 @@ static int __init imx_gpc_init(struct device_node *node,
int i; int i;
if (!parent) { if (!parent) {
pr_err("%s: no parent, giving up\n", node->full_name); pr_err("%pOF: no parent, giving up\n", node);
return -ENODEV; return -ENODEV;
} }
parent_domain = irq_find_host(parent); parent_domain = irq_find_host(parent);
if (!parent_domain) { if (!parent_domain) {
pr_err("%s: unable to obtain parent domain\n", node->full_name); pr_err("%pOF: unable to obtain parent domain\n", node);
return -ENXIO; return -ENXIO;
} }
......
...@@ -107,8 +107,7 @@ static void __init kirkwood_dt_eth_fixup(void) ...@@ -107,8 +107,7 @@ static void __init kirkwood_dt_eth_fixup(void)
clk_prepare_enable(clk); clk_prepare_enable(clk);
/* store MAC address register contents in local-mac-address */ /* store MAC address register contents in local-mac-address */
pr_err(FW_INFO "%s: local-mac-address is not set\n", pr_err(FW_INFO "%pOF: local-mac-address is not set\n", np);
np->full_name);
pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL); pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL);
if (!pmac) if (!pmac)
......
...@@ -522,13 +522,13 @@ static int __init wakeupgen_init(struct device_node *node, ...@@ -522,13 +522,13 @@ static int __init wakeupgen_init(struct device_node *node,
u32 val; u32 val;
if (!parent) { if (!parent) {
pr_err("%s: no parent, giving up\n", node->full_name); pr_err("%pOF: no parent, giving up\n", node);
return -ENODEV; return -ENODEV;
} }
parent_domain = irq_find_host(parent); parent_domain = irq_find_host(parent);
if (!parent_domain) { if (!parent_domain) {
pr_err("%s: unable to obtain parent domain\n", node->full_name); pr_err("%pOF: unable to obtain parent domain\n", node);
return -ENXIO; return -ENXIO;
} }
/* Not supported on OMAP4 ES1.0 silicon */ /* Not supported on OMAP4 ES1.0 silicon */
......
...@@ -2417,8 +2417,8 @@ static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data, ...@@ -2417,8 +2417,8 @@ static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
if (mem) if (mem)
pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name); pr_err("omap_hwmod: %s: Could not ioremap\n", oh->name);
else else
pr_err("omap_hwmod: %s: Missing dt reg%i for %s\n", pr_err("omap_hwmod: %s: Missing dt reg%i for %pOF\n",
oh->name, index, np->full_name); oh->name, index, np);
return -ENXIO; return -ENXIO;
} }
......
...@@ -182,8 +182,8 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node) ...@@ -182,8 +182,8 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node)
ret = of_address_to_resource(node, 0, &res); ret = of_address_to_resource(node, 0, &res);
if (ret < 0) { if (ret < 0) {
pr_err("%s: could not get address for node %s\n", pr_err("%s: could not get address for node %pOF\n",
__func__, node->full_name); __func__, node);
return ret; return ret;
} }
......
...@@ -195,8 +195,7 @@ static void __init add_special_pd(struct device_node *np, enum pd_types type) ...@@ -195,8 +195,7 @@ static void __init add_special_pd(struct device_node *np, enum pd_types type)
return; return;
} }
pr_debug("Special PM domain %s type %d for %s\n", pd->name, type, pr_debug("Special PM domain %s type %d for %pOF\n", pd->name, type, np);
np->full_name);
special_pds[num_special_pds].pd = pd; special_pds[num_special_pds].pd = pd;
special_pds[num_special_pds].type = type; special_pds[num_special_pds].type = type;
...@@ -331,13 +330,13 @@ static int __init rmobile_init_pm_domains(void) ...@@ -331,13 +330,13 @@ static int __init rmobile_init_pm_domains(void)
for_each_compatible_node(np, NULL, "renesas,sysc-rmobile") { for_each_compatible_node(np, NULL, "renesas,sysc-rmobile") {
base = of_iomap(np, 0); base = of_iomap(np, 0);
if (!base) { if (!base) {
pr_warn("%s cannot map reg 0\n", np->full_name); pr_warn("%pOF cannot map reg 0\n", np);
continue; continue;
} }
pmd = of_get_child_by_name(np, "pm-domains"); pmd = of_get_child_by_name(np, "pm-domains");
if (!pmd) { if (!pmd) {
pr_warn("%s lacks pm-domains node\n", np->full_name); pr_warn("%pOF lacks pm-domains node\n", np);
continue; continue;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment