Skip to content

Commit

Permalink
sbus: Convert to using %pOF instead of full_name
Browse files Browse the repository at this point in the history
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: "David S. Miller" <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Rob Herring authored and David S. Miller committed Jul 20, 2017
1 parent 45fc011 commit 8cd3ec5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions drivers/sbus/char/display7seg.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ static int d7s_probe(struct platform_device *op)

writeb(regs, p->regs);

printk(KERN_INFO PFX "7-Segment Display%s at [%s:0x%llx] %s\n",
op->dev.of_node->full_name,
printk(KERN_INFO PFX "7-Segment Display%pOF at [%s:0x%llx] %s\n",
op->dev.of_node,
(regs & D7S_FLIP) ? " (FLIPPED)" : "",
op->resource[0].start,
sol_compat ? "in sol_compat mode" : "");
Expand Down
4 changes: 2 additions & 2 deletions drivers/sbus/char/flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ static int flash_probe(struct platform_device *op)
}
flash.busy = 0;

printk(KERN_INFO "%s: OBP Flash, RD %lx[%lx] WR %lx[%lx]\n",
op->dev.of_node->full_name,
printk(KERN_INFO "%pOF: OBP Flash, RD %lx[%lx] WR %lx[%lx]\n",
op->dev.of_node,
flash.read_base, flash.read_size,
flash.write_base, flash.write_size);

Expand Down
4 changes: 2 additions & 2 deletions drivers/sbus/char/uctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ static int uctrl_probe(struct platform_device *op)
}

sbus_writel(UCTRL_INTR_RXNE_REQ|UCTRL_INTR_RXNE_MSK, &p->regs->uctrl_intr);
printk(KERN_INFO "%s: uctrl regs[0x%p] (irq %d)\n",
op->dev.of_node->full_name, p->regs, p->irq);
printk(KERN_INFO "%pOF: uctrl regs[0x%p] (irq %d)\n",
op->dev.of_node, p->regs, p->irq);
uctrl_get_event_status(p);
uctrl_get_external_status(p);

Expand Down

0 comments on commit 8cd3ec5

Please sign in to comment.