aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-03-28 10:27:31 -0400
committerThomas Gleixner <tglx@linutronix.de>2011-03-28 10:55:11 -0400
commit33b054b867b84015173a38d9cd9ff513b6498818 (patch)
tree341f935d57af66fe82d384940b577fa9215ce5e6
parent6829310548a76d343205029bb41c14e75bf6a7fb (diff)
genirq: Remove handle_IRQ_event
Last user gone. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--include/linux/irq.h3
-rw-r--r--kernel/irq/handle.c12
2 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index 44ebca745789..41fc783171fd 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -413,9 +413,6 @@ static inline void irq_move_masked_irq(struct irq_data *data) { }
413 413
414extern int no_irq_affinity; 414extern int no_irq_affinity;
415 415
416/* Handle irq action chains: */
417extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action);
418
419/* 416/*
420 * Built-in IRQ handlers for various IRQ types, 417 * Built-in IRQ handlers for various IRQ types,
421 * callable via desc->handle_irq() 418 * callable via desc->handle_irq()
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index 60fd5cd75c77..1a2fb77f2fd6 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -188,15 +188,3 @@ irqreturn_t handle_irq_event(struct irq_desc *desc)
188 irq_compat_clr_progress(desc); 188 irq_compat_clr_progress(desc);
189 return ret; 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 */
199irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action)
200{
201 return handle_irq_event_percpu(irq_to_desc(irq), action);
202}