genirq: Remove handle_IRQ_event

Last user gone.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

-15
-3
include/linux/irq.h
··· 413 413 414 414 extern int no_irq_affinity; 415 415 416 - /* Handle irq action chains: */ 417 - extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action); 418 - 419 416 /* 420 417 * Built-in IRQ handlers for various IRQ types, 421 418 * callable via desc->handle_irq()
-12
kernel/irq/handle.c
··· 188 188 irq_compat_clr_progress(desc); 189 189 return ret; 190 190 } 191 - 192 - /** 193 - * handle_IRQ_event - irq action chain handler 194 - * @irq: the interrupt number 195 - * @action: the interrupt action chain for this irq 196 - * 197 - * Handles the action chain of an irq event 198 - */ 199 - irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action) 200 - { 201 - return handle_irq_event_percpu(irq_to_desc(irq), action); 202 - }