diff options
author | Rob Herring <robh@kernel.org> | 2018-08-27 20:52:03 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2018-08-30 16:36:56 +0200 |
commit | b9fad74bfe767aa924d5e329ab3c9a92b20f6b91 (patch) | |
tree | a7942e0ecaa7ee63f5c0f4b33c89cb77d8c30a37 /arch/arm/mach-shmobile | |
parent | 08e735233ea29b17bfec8e4cb302e799d9f920b8 (diff) |
ARM: shmobile: 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.
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/pm-rmobile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/pm-rmobile.c b/arch/arm/mach-shmobile/pm-rmobile.c index e348bcfe389d..9dd6cadcd900 100644 --- a/arch/arm/mach-shmobile/pm-rmobile.c +++ b/arch/arm/mach-shmobile/pm-rmobile.c @@ -189,7 +189,7 @@ static void __init add_special_pd(struct device_node *np, enum pd_types type) return; } - pr_debug("Special PM domain %s type %d for %pOF\n", pd->name, type, np); + pr_debug("Special PM domain %pOFn type %d for %pOF\n", pd, type, np); special_pds[num_special_pds].pd = pd; special_pds[num_special_pds].type = type; |