summaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorIan Campbell2011-02-07 12:08:39 +0100
committerKonrad Rzeszutek Wilk2011-03-03 18:00:30 +0100
commitaa673c1cb3a66d0b37595251c4e8bb688efc8726 (patch)
tree51249d95a6462b25d38684e522def0952a010557 /drivers/xen
parentxen: Switch to new irq_chip functions (diff)
downloadkernel-qcow2-linux-aa673c1cb3a66d0b37595251c4e8bb688efc8726.tar.gz
kernel-qcow2-linux-aa673c1cb3a66d0b37595251c4e8bb688efc8726.tar.xz
kernel-qcow2-linux-aa673c1cb3a66d0b37595251c4e8bb688efc8726.zip
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 <ian.campbell@citrix.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/events.c2
1 files changed, 1 insertions, 1 deletions
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);