summaryrefslogtreecommitdiffstats
path: root/arch/mips/pci/pci-legacy.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2017-07-18 16:42:45 -0500
committerRalf Baechle <ralf@linux-mips.org>2017-08-29 15:21:50 +0200
commit7f27b5b8ed1f77427811d13788fbdb2f53ce94a4 (patch)
tree0e5abffa3801b97d6aa9dd7df6d274a6a2a89b93 /arch/mips/pci/pci-legacy.c
parentcc4a41fe5541a73019a864883297bd5043aa6d98 (diff)
MIPS: 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: Rob Herring <robh@kernel.org> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Cc: devicetree@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/16783/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci/pci-legacy.c')
-rw-r--r--arch/mips/pci/pci-legacy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pci/pci-legacy.c b/arch/mips/pci/pci-legacy.c
index 174575a9a112..958f47c1f558 100644
--- a/arch/mips/pci/pci-legacy.c
+++ b/arch/mips/pci/pci-legacy.c
@@ -127,7 +127,7 @@ void pci_load_of_ranges(struct pci_controller *hose, struct device_node *node)
struct of_pci_range range;
struct of_pci_range_parser parser;
- pr_info("PCI host bridge %s ranges:\n", node->full_name);
+ pr_info("PCI host bridge %pOF ranges:\n", node);
hose->of_node = node;
if (of_pci_range_parser_init(&parser, node))