mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 19:26:01 -04:00
irqchip/armada-370-xp: Rename variable for consistency
Rename the irq variable to virq in the ipi_resume() function for consistency with the rest of the code. Signed-off-by: Marek Behún <kabel@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Link: https://lore.kernel.org/all/20240711115748.30268-2-kabel@kernel.org
This commit is contained in:
committed by
Thomas Gleixner
parent
644799f920
commit
55689986d7
@@ -462,14 +462,14 @@ static const struct irq_domain_ops ipi_domain_ops = {
|
||||
static void ipi_resume(void)
|
||||
{
|
||||
for (int i = 0; i < IPI_DOORBELL_END; i++) {
|
||||
int irq;
|
||||
int virq;
|
||||
|
||||
irq = irq_find_mapping(ipi_domain, i);
|
||||
if (irq <= 0)
|
||||
virq = irq_find_mapping(ipi_domain, i);
|
||||
if (virq <= 0)
|
||||
continue;
|
||||
if (irq_percpu_is_enabled(irq)) {
|
||||
if (irq_percpu_is_enabled(virq)) {
|
||||
struct irq_data *d;
|
||||
d = irq_domain_get_irq_data(ipi_domain, irq);
|
||||
d = irq_domain_get_irq_data(ipi_domain, virq);
|
||||
armada_370_xp_ipi_unmask(d);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user