Commit 7f27b5b8 authored by Rob Herring's avatar Rob Herring Committed by Ralf Baechle

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: default avatarRob 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: default avatarRalf Baechle <ralf@linux-mips.org>
parent cc4a41fe
...@@ -487,17 +487,16 @@ static void __init ath79_clocks_init_dt_ng(struct device_node *np) ...@@ -487,17 +487,16 @@ static void __init ath79_clocks_init_dt_ng(struct device_node *np)
{ {
struct clk *ref_clk; struct clk *ref_clk;
void __iomem *pll_base; void __iomem *pll_base;
const char *dnfn = of_node_full_name(np);
ref_clk = of_clk_get(np, 0); ref_clk = of_clk_get(np, 0);
if (IS_ERR(ref_clk)) { if (IS_ERR(ref_clk)) {
pr_err("%s: of_clk_get failed\n", dnfn); pr_err("%pOF: of_clk_get failed\n", np);
goto err; goto err;
} }
pll_base = of_iomap(np, 0); pll_base = of_iomap(np, 0);
if (!pll_base) { if (!pll_base) {
pr_err("%s: can't map pll registers\n", dnfn); pr_err("%pOF: can't map pll registers\n", np);
goto err_clk; goto err_clk;
} }
...@@ -506,12 +505,12 @@ static void __init ath79_clocks_init_dt_ng(struct device_node *np) ...@@ -506,12 +505,12 @@ static void __init ath79_clocks_init_dt_ng(struct device_node *np)
else if (of_device_is_compatible(np, "qca,ar9330-pll")) else if (of_device_is_compatible(np, "qca,ar9330-pll"))
ar9330_clk_init(ref_clk, pll_base); ar9330_clk_init(ref_clk, pll_base);
else { else {
pr_err("%s: could not find any appropriate clk_init()\n", dnfn); pr_err("%pOF: could not find any appropriate clk_init()\n", np);
goto err_iounmap; goto err_iounmap;
} }
if (of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data)) { if (of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data)) {
pr_err("%s: could not register clk provider\n", dnfn); pr_err("%pOF: could not register clk provider\n", np);
goto err_iounmap; goto err_iounmap;
} }
......
...@@ -127,7 +127,7 @@ void pci_load_of_ranges(struct pci_controller *hose, struct device_node *node) ...@@ -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 range;
struct of_pci_range_parser parser; 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; hose->of_node = node;
if (of_pci_range_parser_init(&parser, node)) if (of_pci_range_parser_init(&parser, node))
......
...@@ -207,8 +207,7 @@ static int rt3883_pci_irq_init(struct device *dev, ...@@ -207,8 +207,7 @@ static int rt3883_pci_irq_init(struct device *dev,
irq = irq_of_parse_and_map(rpc->intc_of_node, 0); irq = irq_of_parse_and_map(rpc->intc_of_node, 0);
if (irq == 0) { if (irq == 0) {
dev_err(dev, "%s has no IRQ", dev_err(dev, "%pOF has no IRQ", rpc->intc_of_node);
of_node_full_name(rpc->intc_of_node));
return -EINVAL; return -EINVAL;
} }
...@@ -438,8 +437,8 @@ static int rt3883_pci_probe(struct platform_device *pdev) ...@@ -438,8 +437,8 @@ static int rt3883_pci_probe(struct platform_device *pdev)
} }
if (!rpc->intc_of_node) { if (!rpc->intc_of_node) {
dev_err(dev, "%s has no %s child node", dev_err(dev, "%pOF has no %s child node",
of_node_full_name(rpc->intc_of_node), rpc->intc_of_node,
"interrupt controller"); "interrupt controller");
return -EINVAL; return -EINVAL;
} }
...@@ -454,8 +453,8 @@ static int rt3883_pci_probe(struct platform_device *pdev) ...@@ -454,8 +453,8 @@ static int rt3883_pci_probe(struct platform_device *pdev)
} }
if (!rpc->pci_controller.of_node) { if (!rpc->pci_controller.of_node) {
dev_err(dev, "%s has no %s child node", dev_err(dev, "%pOF has no %s child node",
of_node_full_name(rpc->intc_of_node), rpc->intc_of_node,
"PCI host bridge"); "PCI host bridge");
err = -EINVAL; err = -EINVAL;
goto err_put_intc_node; goto err_put_intc_node;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment