Skip to content

Commit

Permalink
xen: Fix compile error introduced by "switch to new irq_chip functions"
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ian Campbell authored and Konrad Rzeszutek Wilk committed Mar 3, 2011
1 parent c9e265e commit aa673c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/xen/events.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit aa673c1

Please sign in to comment.