[tip: irq/core] irqchip/stm32-exti: Fix minor indentation issue

From: tip-bot2 for Antonio Borneo
Date: Mon Apr 22 2024 - 18:46:59 EST


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

Commit-ID: 8661327f80b02fbdc763e081c34ed15fbd63f810
Gitweb: https://git.kernel.org/tip/8661327f80b02fbdc763e081c34ed15fbd63f810
Author: Antonio Borneo <antonio.borneo@xxxxxxxxxxx>
AuthorDate: Mon, 15 Apr 2024 15:49:16 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitterDate: Tue, 23 Apr 2024 00:28:14 +02:00

irqchip/stm32-exti: Fix minor indentation issue

Commit 046a6ee2343b ("irqchip: Bulk conversion to
generic_handle_domain_irq()") incorrectly added a leading space character
in the line indentation.

Use only TAB for indentation, removing the leading space.

Signed-off-by: Antonio Borneo <antonio.borneo@xxxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Link: https://lore.kernel.org/r/20240415134926.1254428-2-antonio.borneo@xxxxxxxxxxx

---
drivers/irqchip/irq-stm32-exti.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-stm32-exti.c b/drivers/irqchip/irq-stm32-exti.c
index 26a5193..3b35f13 100644
--- a/drivers/irqchip/irq-stm32-exti.c
+++ b/drivers/irqchip/irq-stm32-exti.c
@@ -322,7 +322,7 @@ static void stm32_irq_handler(struct irq_desc *desc)
while ((pending = stm32_exti_pending(gc))) {
for_each_set_bit(n, &pending, IRQS_PER_BANK)
generic_handle_domain_irq(domain, irq_base + n);
- }
+ }
}

chained_irq_exit(chip, desc);