[PATCH 25/25] irqchip/armada-370-xp: Drop redundant continue

Marek Behún kabel at kernel.org
Mon Jul 1 10:02:49 PDT 2024


Drop redundant continue from mpic_handle_irq().

Signed-off-by: Marek Behún <kabel at kernel.org>
---
 drivers/irqchip/irq-armada-370-xp.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c
index f28c067ef4cb..b4631e0a14af 100644
--- a/drivers/irqchip/irq-armada-370-xp.c
+++ b/drivers/irqchip/irq-armada-370-xp.c
@@ -683,10 +683,8 @@ static void __exception_irq_entry mpic_handle_irq(struct pt_regs *regs)
 		if (hwirq > 1022)
 			break;
 
-		if (hwirq > 1) {
+		if (hwirq > 1)
 			generic_handle_domain_irq(mpic_domain, hwirq);
-			continue;
-		}
 
 		/* MSI handling */
 		if (hwirq == 1)
-- 
2.44.2




More information about the linux-arm-kernel mailing list