The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] irqchip/dw-apb-ictl: fix compilation on x86
@ 2026-05-19  2:57 Rosen Penev
  2026-05-19 17:16 ` Thomas Gleixner
  0 siblings, 1 reply; 4+ messages in thread
From: Rosen Penev @ 2026-05-19  2:57 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Gleixner

__irq_entry belongs nowhere in irqchip drivers as it is an
architecture specific annotation. There's no specific architecture
depends for DW_APB_ICTL and there probably shouldn't be.

Fixes:

drivers/irqchip/irq-dw-apb-ictl.c:33:13: error: variable has incomplete type 'void'
   33 | static void __irq_entry dw_apb_ictl_handle_irq(struct pt_regs *regs)
      |             ^
./arch/x86/include/asm/irq.h:19:21: note: expanded from macro '__irq_entry'
   19 | #define __irq_entry __invalid_section
      |                     ^
drivers/irqchip/irq-dw-apb-ictl.c:33:24: error: expected ';' after top level declarator
   33 | static void __irq_entry dw_apb_ictl_handle_irq(struct pt_regs *regs)
      |                        ^
      |                        ;
  CC      drivers/bus/fsl-mc/dpcon.o
drivers/irqchip/irq-dw-apb-ictl.c:205:18: error: use of undeclared identifier 'dw_apb_ictl_handle_irq'
  205 |                 set_handle_irq(dw_apb_ictl_handle_irq);
      |                                ^~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Rosen Penev <rosenp@gmail.com>
---
 drivers/irqchip/irq-dw-apb-ictl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/irqchip/irq-dw-apb-ictl.c b/drivers/irqchip/irq-dw-apb-ictl.c
index 4240a0dbf627..2cf82bdd720f 100644
--- a/drivers/irqchip/irq-dw-apb-ictl.c
+++ b/drivers/irqchip/irq-dw-apb-ictl.c
@@ -30,7 +30,7 @@
 /* irq domain of the primary interrupt controller. */
 static struct irq_domain *dw_apb_ictl_irq_domain;
 
-static void __irq_entry dw_apb_ictl_handle_irq(struct pt_regs *regs)
+static void dw_apb_ictl_handle_irq(struct pt_regs *regs)
 {
 	struct irq_domain *d = dw_apb_ictl_irq_domain;
 	int n;
-- 
2.54.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-05-20  9:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-19  2:57 [PATCH] irqchip/dw-apb-ictl: fix compilation on x86 Rosen Penev
2026-05-19 17:16 ` Thomas Gleixner
2026-05-19 21:22   ` Rosen Penev
2026-05-20  9:01     ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox