diff options
Diffstat (limited to 'include/asm-alpha')
-rw-r--r-- | include/asm-alpha/smp.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/asm-alpha/smp.h b/include/asm-alpha/smp.h index 9950706abdf8..a3d09d14fee2 100644 --- a/include/asm-alpha/smp.h +++ b/include/asm-alpha/smp.h | |||
@@ -50,11 +50,16 @@ extern cpumask_t cpu_online_map; | |||
50 | extern int smp_num_cpus; | 50 | extern int smp_num_cpus; |
51 | #define cpu_possible_map cpu_present_mask | 51 | #define cpu_possible_map cpu_present_mask |
52 | 52 | ||
53 | int smp_call_function_on_cpu(void (*func) (void *info), void *info,int retry, int wait, cpumask_t cpu); | 53 | int smp_call_function_on_cpu(void (*) (void *), void *, int, int, cpumask_t); |
54 | 54 | ||
55 | #else /* CONFIG_SMP */ | 55 | #else /* CONFIG_SMP */ |
56 | 56 | ||
57 | #define smp_call_function_on_cpu(func,info,retry,wait,cpu) ({ 0; }) | 57 | static inline int |
58 | smp_call_function_on_cpu (void (*func) (void *), void *info, int retry, | ||
59 | int wait, cpumask_t cpu) | ||
60 | { | ||
61 | return 0; | ||
62 | } | ||
58 | 63 | ||
59 | #endif /* CONFIG_SMP */ | 64 | #endif /* CONFIG_SMP */ |
60 | 65 | ||