aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/events.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 1e3b934a4cf7..eba5ec5b020e 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -579,7 +579,7 @@ void rebind_evtchn_irq(int evtchn, int irq)
579 spin_unlock(&irq_mapping_update_lock); 579 spin_unlock(&irq_mapping_update_lock);
580 580
581 /* new event channels are always bound to cpu 0 */ 581 /* new event channels are always bound to cpu 0 */
582 irq_set_affinity(irq, cpumask_of_cpu(0)); 582 irq_set_affinity(irq, cpumask_of(0));
583 583
584 /* Unmask the event channel. */ 584 /* Unmask the event channel. */
585 enable_irq(irq); 585 enable_irq(irq);
@@ -608,9 +608,9 @@ static void rebind_irq_to_cpu(unsigned irq, unsigned tcpu)
608} 608}
609 609
610 610
611static void set_affinity_irq(unsigned irq, cpumask_t dest) 611static void set_affinity_irq(unsigned irq, const struct cpumask *dest)
612{ 612{
613 unsigned tcpu = first_cpu(dest); 613 unsigned tcpu = cpumask_first(dest);
614 rebind_irq_to_cpu(irq, tcpu); 614 rebind_irq_to_cpu(irq, tcpu);
615} 615}
616 616