Commit 70befeda authored by Yang Yingliang's avatar Yang Yingliang Committed by Marc Zyngier

irqchip/orion: Use of_address_count() helper

After commit 16988c74 ("of/address: introduce of_address_count() helper"),
Use of_address_count() to instead of open-coding it, it's no functional change.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Signed-off-by: default avatarMarc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20230726030741.1136244-1-yangyingliang@huawei.com
parent d0afed83
...@@ -57,8 +57,7 @@ static int __init orion_irq_init(struct device_node *np, ...@@ -57,8 +57,7 @@ static int __init orion_irq_init(struct device_node *np,
struct resource r; struct resource r;
/* count number of irq chips by valid reg addresses */ /* count number of irq chips by valid reg addresses */
while (of_address_to_resource(np, num_chips, &r) == 0) num_chips = of_address_count(np);
num_chips++;
orion_irq_domain = irq_domain_add_linear(np, orion_irq_domain = irq_domain_add_linear(np,
num_chips * ORION_IRQS_PER_CHIP, num_chips * ORION_IRQS_PER_CHIP,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment