xen: Use new irq_move functions

These functions take irq_data as an argument and avoid a redundant
lookup in the sparse irq case.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>

+2 -2
+2 -2
drivers/xen/events.c
··· 585 { 586 int evtchn = evtchn_from_irq(data->irq); 587 588 - move_native_irq(data->irq); 589 590 if (VALID_EVTCHN(evtchn)) { 591 mask_evtchn(evtchn); ··· 1339 { 1340 int evtchn = evtchn_from_irq(data->irq); 1341 1342 - move_masked_irq(data->irq); 1343 1344 if (VALID_EVTCHN(evtchn)) 1345 unmask_evtchn(evtchn);
··· 585 { 586 int evtchn = evtchn_from_irq(data->irq); 587 588 + irq_move_irq(data); 589 590 if (VALID_EVTCHN(evtchn)) { 591 mask_evtchn(evtchn); ··· 1339 { 1340 int evtchn = evtchn_from_irq(data->irq); 1341 1342 + irq_move_masked_irq(data); 1343 1344 if (VALID_EVTCHN(evtchn)) 1345 unmask_evtchn(evtchn);