aboutsummaryrefslogtreecommitdiffstats
path: root/linux-2.6-xen-sparse
diff options
context:
space:
mode:
authorawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>2007-01-28 16:33:18 -0700
committerawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>2007-01-28 16:33:18 -0700
commit2be162b951fb5c5b450a54da356dd86ed412777e (patch)
tree4f533c13c5d1983d087ec14aef4d5861452ab1e4 /linux-2.6-xen-sparse
parent4493c1e82f2b665846d4bb1f60edda0b581969fc (diff)
downloadxen-2be162b951fb5c5b450a54da356dd86ed412777e.tar.gz
xen-2be162b951fb5c5b450a54da356dd86ed412777e.tar.bz2
xen-2be162b951fb5c5b450a54da356dd86ed412777e.zip
[IA64] New resend_irq_on_evtchn() params
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Diffstat (limited to 'linux-2.6-xen-sparse')
-rw-r--r--linux-2.6-xen-sparse/include/asm-ia64/hw_irq.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/linux-2.6-xen-sparse/include/asm-ia64/hw_irq.h b/linux-2.6-xen-sparse/include/asm-ia64/hw_irq.h
index 6369480485..922184d514 100644
--- a/linux-2.6-xen-sparse/include/asm-ia64/hw_irq.h
+++ b/linux-2.6-xen-sparse/include/asm-ia64/hw_irq.h
@@ -104,10 +104,9 @@ extern void register_percpu_irq (ia64_vector vec, struct irqaction *action);
static inline void ia64_resend_irq(unsigned int vector)
{
#ifdef CONFIG_XEN
- extern void resend_irq_on_evtchn(struct hw_interrupt_type *h,
- unsigned int i);
+ extern int resend_irq_on_evtchn(unsigned int i);
if (is_running_on_xen())
- resend_irq_on_evtchn(h, vector);
+ resend_irq_on_evtchn(vector);
else
#endif /* CONFIG_XEN */
platform_send_ipi(smp_processor_id(), vector, IA64_IPI_DM_INT, 0);