mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
EDAC/altera: Convert to generic_handle_domain_irq()
Replace generic_handle_irq(irq_linear_revmap()) with a single call to generic_handle_domain_irq(). Signed-off-by: Marc Zyngier <maz@kernel.org>
This commit is contained in:
parent
2c89965830
commit
eecb06813d
@ -1804,11 +1804,8 @@ static void altr_edac_a10_irq_handler(struct irq_desc *desc)
|
||||
regmap_read(edac->ecc_mgr_map, sm_offset, &irq_status);
|
||||
|
||||
bits = irq_status;
|
||||
for_each_set_bit(bit, &bits, 32) {
|
||||
irq = irq_linear_revmap(edac->domain, dberr * 32 + bit);
|
||||
if (irq)
|
||||
generic_handle_irq(irq);
|
||||
}
|
||||
for_each_set_bit(bit, &bits, 32)
|
||||
generic_handle_domain_irq(edac->domain, dberr * 32 + bit);
|
||||
|
||||
chained_irq_exit(chip, desc);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user