genirq: Add stub for set_handle_irq() when !GENERIC_IRQ_MULTI_HANDLER
authorZhen Lei <thunder.leizhen@huawei.com>
Thu, 24 Sep 2020 07:17:49 +0000 (15:17 +0800)
committerMarc Zyngier <maz@kernel.org>
Fri, 25 Sep 2020 15:33:57 +0000 (16:33 +0100)
In order to avoid compilation errors when a driver references set_handle_irq(),
but that the architecture doesn't select GENERIC_IRQ_MULTI_HANDLER,
add a stub function that will just WARN_ON_ONCE() if ever used.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
[maz: commit message]
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20200924071754.4509-2-thunder.leizhen@huawei.com
include/linux/irq.h

index 1b7f4df..b167bae 100644 (file)
@@ -1252,6 +1252,12 @@ int __init set_handle_irq(void (*handle_irq)(struct pt_regs *));
  * top-level IRQ handler.
  */
 extern void (*handle_arch_irq)(struct pt_regs *) __ro_after_init;
+#else
+#define set_handle_irq(handle_irq)             \
+       do {                                    \
+               (void)handle_irq;               \
+               WARN_ON(1);                     \
+       } while (0)
 #endif
 
 #endif /* _LINUX_IRQ_H */