Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5dc4dca4 authored by Rob Herring's avatar Rob Herring
Browse files

nios2: 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.

Cc: Ley Foon Tan <lftan@altera.com>
Cc: nios2-dev@lists.rocketboards.org
Acked-by: default avatarLey Foon Tan <ley.foon.tan@intel.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 389d0a8a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -214,12 +214,12 @@ static int __init nios2_timer_get_base_and_freq(struct device_node *np,
{
	*base = of_iomap(np, 0);
	if (!*base) {
		pr_crit("Unable to map reg for %s\n", np->name);
		pr_crit("Unable to map reg for %pOFn\n", np);
		return -ENXIO;
	}

	if (of_property_read_u32(np, "clock-frequency", freq)) {
		pr_crit("Unable to get %s clock frequency\n", np->name);
		pr_crit("Unable to get %pOFn clock frequency\n", np);
		return -EINVAL;
	}