diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-02 19:46:48 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 08:48:00 -0400 |
commit | 3d373ce82aaa2b5380d91074aa88879108b47ecf (patch) | |
tree | 60d954c17a349783c0cb1d17c2e2f860abbba829 /arch/ia64/sn | |
parent | 428a40c591f5f2ac7531db8dc191534b8590f339 (diff) |
ia64: Remove stale irq_chip.end
irq_chip.end got obsolete with the removal of __do_IRQ().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Tony Luck <tony.luck@intel.com>
LKML-Reference: <20110203004210.143127544@linutronix.de>
Diffstat (limited to 'arch/ia64/sn')
-rw-r--r-- | arch/ia64/sn/kernel/irq.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/ia64/sn/kernel/irq.c b/arch/ia64/sn/kernel/irq.c index 13c15d968098..658c716283ce 100644 --- a/arch/ia64/sn/kernel/irq.c +++ b/arch/ia64/sn/kernel/irq.c | |||
@@ -114,28 +114,6 @@ static void sn_ack_irq(unsigned int irq) | |||
114 | move_native_irq(irq); | 114 | move_native_irq(irq); |
115 | } | 115 | } |
116 | 116 | ||
117 | static void sn_end_irq(unsigned int irq) | ||
118 | { | ||
119 | int ivec; | ||
120 | u64 event_occurred; | ||
121 | |||
122 | ivec = irq & 0xff; | ||
123 | if (ivec == SGI_UART_VECTOR) { | ||
124 | event_occurred = HUB_L((u64*)LOCAL_MMR_ADDR (SH_EVENT_OCCURRED)); | ||
125 | /* If the UART bit is set here, we may have received an | ||
126 | * interrupt from the UART that the driver missed. To | ||
127 | * make sure, we IPI ourselves to force us to look again. | ||
128 | */ | ||
129 | if (event_occurred & SH_EVENT_OCCURRED_UART_INT_MASK) { | ||
130 | platform_send_ipi(smp_processor_id(), SGI_UART_VECTOR, | ||
131 | IA64_IPI_DM_INT, 0); | ||
132 | } | ||
133 | } | ||
134 | __clear_bit(ivec, (volatile void *)pda->sn_in_service_ivecs); | ||
135 | if (sn_force_interrupt_flag) | ||
136 | force_interrupt(irq); | ||
137 | } | ||
138 | |||
139 | static void sn_irq_info_free(struct rcu_head *head); | 117 | static void sn_irq_info_free(struct rcu_head *head); |
140 | 118 | ||
141 | struct sn_irq_info *sn_retarget_vector(struct sn_irq_info *sn_irq_info, | 119 | struct sn_irq_info *sn_retarget_vector(struct sn_irq_info *sn_irq_info, |
@@ -275,7 +253,6 @@ struct irq_chip irq_type_sn = { | |||
275 | .enable = sn_enable_irq, | 253 | .enable = sn_enable_irq, |
276 | .disable = sn_disable_irq, | 254 | .disable = sn_disable_irq, |
277 | .ack = sn_ack_irq, | 255 | .ack = sn_ack_irq, |
278 | .end = sn_end_irq, | ||
279 | .mask = sn_mask_irq, | 256 | .mask = sn_mask_irq, |
280 | .unmask = sn_unmask_irq, | 257 | .unmask = sn_unmask_irq, |
281 | .set_affinity = sn_set_affinity_irq | 258 | .set_affinity = sn_set_affinity_irq |