Skip to content

Commit ccb8001

Browse files
geertudlezcano
authored andcommitted
clocksource/drivers/timer-of: Convert last full_name to %pOF
Commit 469869d ("clocksource: Convert to using %pOF instead of full_name") converted all but the one just added before by commit 32f2fea ("clocksource/drivers/timer-of: Handle of_irq_get_byname() result correctly"). Signed-off-by: Geert Uytterhoeven <[email protected]> Signed-off-by: Daniel Lezcano <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent b9023b9 commit ccb8001

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/clocksource/timer-of.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ static __init int timer_of_irq_init(struct device_node *np,
5555
if (of_irq->name) {
5656
of_irq->irq = ret = of_irq_get_byname(np, of_irq->name);
5757
if (ret < 0) {
58-
pr_err("Failed to get interrupt %s for %s\n",
59-
of_irq->name, np->full_name);
58+
pr_err("Failed to get interrupt %s for %pOF\n",
59+
of_irq->name, np);
6060
return ret;
6161
}
6262
} else {

0 commit comments

Comments
 (0)