]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
irqchip/irq-pic32-evic: Define board_bind_eic_interrupt for !MIPS builds
authorBrian Masney <bmasney@redhat.com>
Sun, 22 Feb 2026 23:43:46 +0000 (18:43 -0500)
committerThomas Gleixner <tglx@kernel.org>
Tue, 24 Feb 2026 07:15:43 +0000 (08:15 +0100)
The board_bind_eic_interrupt() pointer is MIPS specific. When compiling for
other architectures it is undefined which breaks the build.

Define it as a static variable when building for non MIPS architectures
with COMPILE_TEST.

Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20260222-irqchip-pic32-v1-3-37f50d1f14af@redhat.com
drivers/irqchip/irq-pic32-evic.c

index 1eeb0e63d670b17f557630eb5cf040fc09b135e6..afb70026545156fdab50f48bc45dbc34fade3011 100644 (file)
@@ -48,6 +48,8 @@ asmlinkage void __weak plat_irq_dispatch(void)
        hwirq = readl(evic_base + REG_INTSTAT) & 0xFF;
        do_domain_IRQ(evic_irq_domain, hwirq);
 }
+#else
+static void (*board_bind_eic_interrupt)(int irq, int regset);
 #endif
 
 static struct evic_chip_data *irqd_to_priv(struct irq_data *data)