aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasileios Amoiridis <[email protected]>2024-09-13 00:16:05 +0200
committerRob Herring (Arm) <[email protected]>2024-09-13 14:52:28 -0500
commit0423caceb4599fca7c9575e8d8477e88784c8ae8 (patch)
tree992836df76b4b1c9bd8eb39532fcfbdf35e7f081
parentba3c92ba09fecf9286f54ef54a03638711e11da8 (diff)
of/irq: Use helper to define resources
Resources definition can become simpler and more organised by using the dedicated helpers. Suggested-by: Andy Shevchenko <[email protected]> Signed-off-by: Vasileios Amoiridis <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Rob Herring (Arm) <[email protected]>
-rw-r--r--drivers/of/irq.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c
index 5d27b20634d3..a494f56a0d0e 100644
--- a/drivers/of/irq.c
+++ b/drivers/of/irq.c
@@ -429,9 +429,8 @@ int of_irq_to_resource(struct device_node *dev, int index, struct resource *r)
of_property_read_string_index(dev, "interrupt-names", index,
&name);
- r->start = r->end = irq;
- r->flags = IORESOURCE_IRQ | irq_get_trigger_type(irq);
- r->name = name ? name : of_node_full_name(dev);
+ *r = DEFINE_RES_IRQ_NAMED(irq, name ?: of_node_full_name(dev));
+ r->flags |= irq_get_trigger_type(irq);
}
return irq;