From: Ian Campbell Date: Mon, 7 Feb 2011 11:08:39 +0000 (+0000) Subject: xen: Fix compile error introduced by "switch to new irq_chip functions" X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=aa673c1cb3a66d0b37595251c4e8bb688efc8726;p=deliverable%2Flinux.git xen: Fix compile error introduced by "switch to new irq_chip functions" drivers/xen/events.c: In function 'ack_pirq': drivers/xen/events.c:568: error: implicit declaration of function 'irq_move_irq' Signed-off-by: Ian Campbell Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/drivers/xen/events.c b/drivers/xen/events.c index cf1712fb1c46..5aa422a3c3cd 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -553,7 +553,7 @@ static void ack_pirq(struct irq_data *data) { int evtchn = evtchn_from_irq(data->irq); - irq_move_irq(data); + move_native_irq(data->irq); if (VALID_EVTCHN(evtchn)) { mask_evtchn(evtchn);