diff options
Diffstat (limited to 'arch/m32r/include/asm/smp.h')
| -rw-r--r-- | arch/m32r/include/asm/smp.h | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/m32r/include/asm/smp.h b/arch/m32r/include/asm/smp.h index e67ded1aab9..cf7829a6155 100644 --- a/arch/m32r/include/asm/smp.h +++ b/arch/m32r/include/asm/smp.h @@ -81,11 +81,11 @@ static __inline__ int cpu_number_map(int cpu)  static __inline__ unsigned int num_booting_cpus(void)  { -	return cpus_weight(cpu_callout_map); +	return cpumask_weight(&cpu_callout_map);  }  extern void smp_send_timer(void); -extern unsigned long send_IPI_mask_phys(cpumask_t, int, int); +extern unsigned long send_IPI_mask_phys(const cpumask_t*, int, int);  extern void arch_send_call_function_single_ipi(int cpu);  extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); @@ -94,8 +94,6 @@ extern void arch_send_call_function_ipi_mask(const struct cpumask *mask);  #define NO_PROC_ID (0xff)	/* No processor magic marker */ -#define PROC_CHANGE_PENALTY	(15)	/* Schedule penalty */ -  /*   * M32R-mp IPI   */  |