Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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@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

authored by

Antonio Borneo and committed by
Thomas Gleixner
8661327f 8371696a

+1 -1
+1 -1
drivers/irqchip/irq-stm32-exti.c
··· 322 322 while ((pending = stm32_exti_pending(gc))) { 323 323 for_each_set_bit(n, &pending, IRQS_PER_BANK) 324 324 generic_handle_domain_irq(domain, irq_base + n); 325 - } 325 + } 326 326 } 327 327 328 328 chained_irq_exit(chip, desc);