From: Marek BehĂșn Date: Thu, 11 Jul 2024 16:09:03 +0000 (+0200) Subject: irqchip/armada-370-xp: Drop redundant continue X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=081b64cc872707f80a23e41f0ab12852716551b2;p=users%2Fjedix%2Flinux-maple.git irqchip/armada-370-xp: Drop redundant continue Drop redundant continue from mpic_handle_irq(). Signed-off-by: Marek BehĂșn Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/all/20240711160907.31012-7-kabel@kernel.org --- diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c index 66e14f1183d14..4abe0eac184e0 100644 --- a/drivers/irqchip/irq-armada-370-xp.c +++ b/drivers/irqchip/irq-armada-370-xp.c @@ -673,10 +673,8 @@ static void __exception_irq_entry mpic_handle_irq(struct pt_regs *regs) if (i > 1022) break; - if (i > 1) { + if (i > 1) generic_handle_domain_irq(mpic_domain, i); - continue; - } /* MSI handling */ if (i == 1)