Commit 33b054b867b84015173a38d9cd9ff513b6498818

Authored by Thomas Gleixner
1 parent 6829310548

genirq: Remove handle_IRQ_event

Last user gone.

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

Showing 2 changed files with 0 additions and 15 deletions Side-by-side Diff

... ... @@ -413,9 +413,6 @@
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()
... ... @@ -188,16 +188,4 @@
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   -}