Re: [PATCH] ARM: zynq: Convert to using %pOFn instead of device_node.name

From: Michal Simek
Date: Wed Sep 05 2018 - 09:27:55 EST


On 28.8.2018 03:52, Rob Herring wrote:
> In preparation to remove the node name pointer from struct device_node,
> convert printf users to use the %pOFn format specifier.
>
> Cc: Michal Simek <michal.simek@xxxxxxxxxx>
> Cc: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx
> Signed-off-by: Rob Herring <robh@xxxxxxxxxx>
> ---
> arch/arm/mach-zynq/slcr.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-zynq/slcr.c b/arch/arm/mach-zynq/slcr.c
> index f0292a30e6f6..10ef99ce1d90 100644
> --- a/arch/arm/mach-zynq/slcr.c
> +++ b/arch/arm/mach-zynq/slcr.c
> @@ -233,7 +233,7 @@ int __init zynq_early_slcr_init(void)
>
> register_restart_handler(&zynq_slcr_restart_nb);
>
> - pr_info("%s mapped to %p\n", np->name, zynq_slcr_base);
> + pr_info("%pOFn mapped to %p\n", np, zynq_slcr_base);
>
> of_node_put(np);
>
>

Applied.
M