diff options
author | Rob Herring <robh@kernel.org> | 2018-08-27 19:56:15 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-11-27 10:54:17 -0600 |
commit | 2ef790dc443a25cc3818b0fa34cb9f4ed0ec5ec1 (patch) | |
tree | badd52c6b636f363cb3fc53f7d052b29a1d9cc5f /drivers/irqchip/irq-gic-v3.c | |
parent | 229c55ccb487c0c10721fdb92af874d7b8671cda (diff) | |
download | talos-op-linux-2ef790dc443a25cc3818b0fa34cb9f4ed0ec5ec1.tar.gz talos-op-linux-2ef790dc443a25cc3818b0fa34cb9f4ed0ec5ec1.zip |
irqchip: 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.
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/irqchip/irq-gic-v3.c')
-rw-r--r-- | drivers/irqchip/irq-gic-v3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c index 8f87f40c9460..29e9d47be97d 100644 --- a/drivers/irqchip/irq-gic-v3.c +++ b/drivers/irqchip/irq-gic-v3.c @@ -1184,8 +1184,8 @@ static void __init gic_populate_ppi_partitions(struct device_node *gic_node) part->partition_id = of_node_to_fwnode(child_part); - pr_info("GIC: PPI partition %s[%d] { ", - child_part->name, part_idx); + pr_info("GIC: PPI partition %pOFn[%d] { ", + child_part, part_idx); n = of_property_count_elems_of_size(child_part, "affinity", sizeof(u32)); |