diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 21:37:31 +0100 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-03-29 10:01:05 -0400 |
commit | e240ae4aad9c5c0da189cb6c956cca58abd428d0 (patch) | |
tree | d7041867914d706c369e5833876b433855fe50ed /drivers/xen | |
parent | 3b3af761669ae59530a8be763b83c937c6096772 (diff) | |
download | linux-3.10-e240ae4aad9c5c0da189cb6c956cca58abd428d0.tar.gz linux-3.10-e240ae4aad9c5c0da189cb6c956cca58abd428d0.tar.bz2 linux-3.10-e240ae4aad9c5c0da189cb6c956cca58abd428d0.zip |
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>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/events.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c index 0e7e394e42f..036343ba204 100644 --- a/drivers/xen/events.c +++ b/drivers/xen/events.c @@ -585,7 +585,7 @@ static void ack_pirq(struct irq_data *data) { int evtchn = evtchn_from_irq(data->irq); - move_native_irq(data->irq); + irq_move_irq(data); if (VALID_EVTCHN(evtchn)) { mask_evtchn(evtchn); @@ -1339,7 +1339,7 @@ static void ack_dynirq(struct irq_data *data) { int evtchn = evtchn_from_irq(data->irq); - move_masked_irq(data->irq); + irq_move_masked_irq(data); if (VALID_EVTCHN(evtchn)) unmask_evtchn(evtchn); |