Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa673c1c authored by Ian Campbell's avatar Ian Campbell Committed by Konrad Rzeszutek Wilk
Browse files

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: default avatarIan Campbell <ian.campbell@citrix.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent c9e265e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -553,7 +553,7 @@ static void ack_pirq(struct irq_data *data)
{
{
	int evtchn = evtchn_from_irq(data->irq);
	int evtchn = evtchn_from_irq(data->irq);


	irq_move_irq(data);
	move_native_irq(data->irq);


	if (VALID_EVTCHN(evtchn)) {
	if (VALID_EVTCHN(evtchn)) {
		mask_evtchn(evtchn);
		mask_evtchn(evtchn);