diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-09-18 09:24:43 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2013-10-24 06:50:34 -0400 |
commit | 3da5278727a895d49a601f67fd49dffa0b80f9a5 (patch) | |
tree | 7cf2db539bcf5e3338e69bd51762c8ada02437ed /drivers/of | |
parent | a9f10ca76d784023fc45f01f025b54e9960f4ec1 (diff) |
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: Thierry Reding <treding@nvidia.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
[grant.likely: fixup s/of_irq_map_one/of_irq_parse_one/]
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/irq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c index ddea945ec29e..7c4ff122785f 100644 --- a/drivers/of/irq.c +++ b/drivers/of/irq.c | |||
@@ -373,9 +373,10 @@ EXPORT_SYMBOL_GPL(of_irq_to_resource); | |||
373 | */ | 373 | */ |
374 | int of_irq_count(struct device_node *dev) | 374 | int of_irq_count(struct device_node *dev) |
375 | { | 375 | { |
376 | struct of_phandle_args irq; | ||
376 | int nr = 0; | 377 | int nr = 0; |
377 | 378 | ||
378 | while (of_irq_to_resource(dev, nr, NULL)) | 379 | while (of_irq_parse_one(dev, nr, &irq) == 0) |
379 | nr++; | 380 | nr++; |
380 | 381 | ||
381 | return nr; | 382 | return nr; |