aboutsummaryrefslogtreecommitdiffstats
path: root/arch/nios2
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2018-08-27 19:49:49 -0500
committerRob Herring <robh@kernel.org>2018-09-28 16:39:27 -0500
commit5dc4dca48305be61120be42214171acf486413d5 (patch)
treef4a7baff984b5a4dbb3ba9e3acd958e1323d191d /arch/nios2
parentMerge branch 'dt/cpu-type-rework' into dt/next (diff)
downloadlinux-dev-5dc4dca48305be61120be42214171acf486413d5.tar.xz
linux-dev-5dc4dca48305be61120be42214171acf486413d5.zip
nios2: Convert to using %pOFn instead of device_node.name
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Ley Foon Tan <lftan@altera.com> Cc: nios2-dev@lists.rocketboards.org Acked-by: Ley Foon Tan <ley.foon.tan@intel.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'arch/nios2')
-rw-r--r--arch/nios2/kernel/time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/nios2/kernel/time.c b/arch/nios2/kernel/time.c
index ab88b6dd4679..54467d0085a1 100644
--- a/arch/nios2/kernel/time.c
+++ b/arch/nios2/kernel/time.c
@@ -214,12 +214,12 @@ static int __init nios2_timer_get_base_and_freq(struct device_node *np,
{
*base = of_iomap(np, 0);
if (!*base) {
- pr_crit("Unable to map reg for %s\n", np->name);
+ pr_crit("Unable to map reg for %pOFn\n", np);
return -ENXIO;
}
if (of_property_read_u32(np, "clock-frequency", freq)) {
- pr_crit("Unable to get %s clock frequency\n", np->name);
+ pr_crit("Unable to get %pOFn clock frequency\n", np);
return -EINVAL;
}