diff options
Diffstat (limited to 'drivers/of/irq.c')
-rw-r--r-- | drivers/of/irq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c index 6ce72aa65425..9c4b32522bc2 100644 --- a/drivers/of/irq.c +++ b/drivers/of/irq.c | |||
@@ -131,7 +131,7 @@ int of_irq_parse_raw(const __be32 *addr, struct of_phandle_args *out_irq) | |||
131 | goto fail; | 131 | goto fail; |
132 | } | 132 | } |
133 | 133 | ||
134 | pr_debug("of_irq_parse_raw: ipar=%s, size=%d\n", of_node_full_name(ipar), intsize); | 134 | pr_debug("of_irq_parse_raw: ipar=%pOF, size=%d\n", ipar, intsize); |
135 | 135 | ||
136 | if (out_irq->args_count != intsize) | 136 | if (out_irq->args_count != intsize) |
137 | goto fail; | 137 | goto fail; |
@@ -269,7 +269,7 @@ int of_irq_parse_raw(const __be32 *addr, struct of_phandle_args *out_irq) | |||
269 | skiplevel: | 269 | skiplevel: |
270 | /* Iterate again with new parent */ | 270 | /* Iterate again with new parent */ |
271 | out_irq->np = newpar; | 271 | out_irq->np = newpar; |
272 | pr_debug(" -> new parent: %s\n", of_node_full_name(newpar)); | 272 | pr_debug(" -> new parent: %pOF\n", newpar); |
273 | of_node_put(ipar); | 273 | of_node_put(ipar); |
274 | ipar = newpar; | 274 | ipar = newpar; |
275 | newpar = NULL; | 275 | newpar = NULL; |
@@ -301,7 +301,7 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar | |||
301 | u32 intsize, intlen; | 301 | u32 intsize, intlen; |
302 | int i, res; | 302 | int i, res; |
303 | 303 | ||
304 | pr_debug("of_irq_parse_one: dev=%s, index=%d\n", of_node_full_name(device), index); | 304 | pr_debug("of_irq_parse_one: dev=%pOF, index=%d\n", device, index); |
305 | 305 | ||
306 | /* OldWorld mac stuff is "special", handle out of line */ | 306 | /* OldWorld mac stuff is "special", handle out of line */ |
307 | if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC) | 307 | if (of_irq_workarounds & OF_IMAP_OLDWORLD_MAC) |
@@ -555,8 +555,8 @@ void __init of_irq_init(const struct of_device_id *matches) | |||
555 | 555 | ||
556 | of_node_set_flag(desc->dev, OF_POPULATED); | 556 | of_node_set_flag(desc->dev, OF_POPULATED); |
557 | 557 | ||
558 | pr_debug("of_irq_init: init %s (%p), parent %p\n", | 558 | pr_debug("of_irq_init: init %pOF (%p), parent %p\n", |
559 | desc->dev->full_name, | 559 | desc->dev, |
560 | desc->dev, desc->interrupt_parent); | 560 | desc->dev, desc->interrupt_parent); |
561 | ret = desc->irq_init_cb(desc->dev, | 561 | ret = desc->irq_init_cb(desc->dev, |
562 | desc->interrupt_parent); | 562 | desc->interrupt_parent); |