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

tip-bot2 for Marek Behún posted 1 patch 1 year, 4 months ago
There is a newer version of this series
drivers/irqchip/irq-armada-370-xp.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
[tip: irq/core] irqchip/armada-370-xp: Drop redundant continue
Posted by tip-bot2 for Marek Behún 1 year, 4 months ago
The following commit has been merged into the irq/core branch of tip:

Commit-ID:     9424aba41d43204236fe0d1af322c021d14b9f8a
Gitweb:        https://git.kernel.org/tip/9424aba41d43204236fe0d1af322c021d14b9f8a
Author:        Marek Behún <kabel@kernel.org>
AuthorDate:    Thu, 11 Jul 2024 18:09:03 +02:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Mon, 29 Jul 2024 10:57:24 +02:00

irqchip/armada-370-xp: Drop redundant continue

Drop redundant continue from mpic_handle_irq().

Signed-off-by: Marek Behún <kabel@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20240711160907.31012-7-kabel@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 6e35f3c..c1085c7 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)