aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip/irq-stm32-exti.c
diff options
context:
space:
mode:
authorLudovic Barre <ludovic.barre@st.com>2018-04-26 18:18:25 +0200
committerMarc Zyngier <marc.zyngier@arm.com>2018-05-24 12:38:20 +0100
commitea80aa2a1a594fb21c8b5aec192e1d6deee686b0 (patch)
tree99624f3c2a6ccc42866d7a98a8998483e353e7a5 /drivers/irqchip/irq-stm32-exti.c
parentirqchip/stm32: Optimizes and cleans up stm32-exti irq_domain (diff)
downloadlinux-dev-ea80aa2a1a594fb21c8b5aec192e1d6deee686b0.tar.xz
linux-dev-ea80aa2a1a594fb21c8b5aec192e1d6deee686b0.zip
irqchip/stm32: Checkpatch fix
-WARNING: struct irq_domain_ops should normally be const -CHECK: Alignment should match open parenthesis Signed-off-by: Ludovic Barre <ludovic.barre@st.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'drivers/irqchip/irq-stm32-exti.c')
-rw-r--r--drivers/irqchip/irq-stm32-exti.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-stm32-exti.c b/drivers/irqchip/irq-stm32-exti.c
index 8013a87179da..b91a8c289836 100644
--- a/drivers/irqchip/irq-stm32-exti.c
+++ b/drivers/irqchip/irq-stm32-exti.c
@@ -186,7 +186,7 @@ static void stm32_exti_free(struct irq_domain *d, unsigned int virq,
irq_domain_reset_irq_data(data);
}
-struct irq_domain_ops irq_exti_domain_ops = {
+static const struct irq_domain_ops irq_exti_domain_ops = {
.map = irq_map_generic_chip,
.alloc = stm32_exti_alloc,
.free = stm32_exti_free,
@@ -221,7 +221,7 @@ __init stm32_exti_init(const struct stm32_exti_bank **stm32_exti_banks,
handle_edge_irq, clr, 0, 0);
if (ret) {
pr_err("%pOF: Could not allocate generic interrupt chip.\n",
- node);
+ node);
goto out_free_domain;
}