Skip to content

Commit 8661327

Browse files
AntonioBorneoKAGA-KOKO
authored andcommitted
irqchip/stm32-exti: Fix minor indentation issue
Commit 046a6ee ("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@foss.st.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/r/20240415134926.1254428-2-antonio.borneo@foss.st.com
1 parent 8371696 commit 8661327

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/irqchip/irq-stm32-exti.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ static void stm32_irq_handler(struct irq_desc *desc)
322322
while ((pending = stm32_exti_pending(gc))) {
323323
for_each_set_bit(n, &pending, IRQS_PER_BANK)
324324
generic_handle_domain_irq(domain, irq_base + n);
325-
}
325+
}
326326
}
327327

328328
chained_irq_exit(chip, desc);

0 commit comments

Comments
 (0)