diff options
Diffstat (limited to 'arch/ia64/kernel/smpboot.c')
-rw-r--r-- | arch/ia64/kernel/smpboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c index 4ede6e571c38..11463994a7d5 100644 --- a/arch/ia64/kernel/smpboot.c +++ b/arch/ia64/kernel/smpboot.c | |||
@@ -682,7 +682,7 @@ int migrate_platform_irqs(unsigned int cpu) | |||
682 | { | 682 | { |
683 | int new_cpei_cpu; | 683 | int new_cpei_cpu; |
684 | irq_desc_t *desc = NULL; | 684 | irq_desc_t *desc = NULL; |
685 | cpumask_t mask; | 685 | const struct cpumask *mask; |
686 | int retval = 0; | 686 | int retval = 0; |
687 | 687 | ||
688 | /* | 688 | /* |
@@ -695,7 +695,7 @@ int migrate_platform_irqs(unsigned int cpu) | |||
695 | * Now re-target the CPEI to a different processor | 695 | * Now re-target the CPEI to a different processor |
696 | */ | 696 | */ |
697 | new_cpei_cpu = any_online_cpu(cpu_online_map); | 697 | new_cpei_cpu = any_online_cpu(cpu_online_map); |
698 | mask = cpumask_of_cpu(new_cpei_cpu); | 698 | mask = cpumask_of(new_cpei_cpu); |
699 | set_cpei_target_cpu(new_cpei_cpu); | 699 | set_cpei_target_cpu(new_cpei_cpu); |
700 | desc = irq_desc + ia64_cpe_irq; | 700 | desc = irq_desc + ia64_cpe_irq; |
701 | /* | 701 | /* |