[tip: irq/core] irqchip/armada-370-xp: Drop redundant continue

From: tip-bot2 for Marek Behún
Date: Tue Jul 30 2024 - 07:41:15 EST


The following commit has been merged into the irq/core branch of tip:

Commit-ID: 081b64cc872707f80a23e41f0ab12852716551b2
Gitweb: https://git.kernel.org/tip/081b64cc872707f80a23e41f0ab12852716551b2
Author: Marek Behún <kabel@xxxxxxxxxx>
AuthorDate: Thu, 11 Jul 2024 18:09:03 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitterDate: Tue, 30 Jul 2024 13:35:48 +02:00

irqchip/armada-370-xp: Drop redundant continue

Drop redundant continue from mpic_handle_irq().

Signed-off-by: Marek Behún <kabel@xxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Link: https://lore.kernel.org/all/20240711160907.31012-7-kabel@xxxxxxxxxx


---
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 66e14f1..4abe0ea 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)