genirq: Remove handle_IRQ_event
authorThomas Gleixner <tglx@linutronix.de>
Mon, 28 Mar 2011 14:27:31 +0000 (16:27 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 28 Mar 2011 14:55:11 +0000 (16:55 +0200)
Last user gone.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/irq.h
kernel/irq/handle.c

index 44ebca7..41fc783 100644 (file)
@@ -413,9 +413,6 @@ static inline void irq_move_masked_irq(struct irq_data *data) { }
 
 extern int no_irq_affinity;
 
-/* Handle irq action chains: */
-extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action);
-
 /*
  * Built-in IRQ handlers for various IRQ types,
  * callable via desc->handle_irq()
index 60fd5cd..1a2fb77 100644 (file)
@@ -188,15 +188,3 @@ irqreturn_t handle_irq_event(struct irq_desc *desc)
        irq_compat_clr_progress(desc);
        return ret;
 }
-
-/**
- * handle_IRQ_event - irq action chain handler
- * @irq:       the interrupt number
- * @action:    the interrupt action chain for this irq
- *
- * Handles the action chain of an irq event
- */
-irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
-{
-       return handle_irq_event_percpu(irq_to_desc(irq), action);
-}