projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8371696
)
irqchip/stm32-exti: Fix minor indentation issue
author
Antonio Borneo
<antonio.borneo@foss.st.com>
Mon, 15 Apr 2024 13:49:16 +0000
(15:49 +0200)
committer
Thomas Gleixner
<tglx@linutronix.de>
Mon, 22 Apr 2024 22:28:14 +0000
(
00:28
+0200)
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
drivers/irqchip/irq-stm32-exti.c
patch
|
blob
|
history
diff --git
a/drivers/irqchip/irq-stm32-exti.c
b/drivers/irqchip/irq-stm32-exti.c
index 26a5193d0ae412006df5b4a790626ae4ff581992..3b35f138ed3d70c15be620292b7ec1dab5225e1a 100644
(file)
--- 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);