From: awilliam@xenbuild2.aw Date: Sun, 28 Jan 2007 23:33:18 +0000 (-0700) Subject: [IA64] New resend_irq_on_evtchn() params X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15373 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2be162b951fb5c5b450a54da356dd86ed412777e;p=xen.git [IA64] New resend_irq_on_evtchn() params Signed-off-by: Alex Williamson --- 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);