Skip to content
Snippets Groups Projects
Commit 3da52787 authored by Thierry Reding's avatar Thierry Reding Committed by Grant Likely
Browse files

of/irq: Rework of_irq_count()


The of_irq_to_resource() helper that is used to implement of_irq_count()
tries to resolve interrupts and in fact creates a mapping for resolved
interrupts. That's pretty heavy lifting for something that claims to
just return the number of interrupts requested by a given device node.

Instead, use the more lightweight of_irq_map_one(), which, despite the
name, doesn't create an actual mapping. Perhaps a better name would be
of_irq_translate_one().

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Acked-by: default avatarRob Herring <rob.herring@calxeda.com>
[grant.likely: fixup s/of_irq_map_one/of_irq_parse_one/]
Signed-off-by: default avatarGrant Likely <grant.likely@linaro.org>
parent a9f10ca7
No related branches found
No related tags found
No related merge requests found
......@@ -373,9 +373,10 @@ EXPORT_SYMBOL_GPL(of_irq_to_resource);
*/
int of_irq_count(struct device_node *dev)
{
struct of_phandle_args irq;
int nr = 0;
while (of_irq_to_resource(dev, nr, NULL))
while (of_irq_parse_one(dev, nr, &irq) == 0)
nr++;
return nr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment