|
@@ -85,12 +85,15 @@ int smp_call_function_any(const struct cpumask *mask,
|
|
|
* Generic and arch helpers
|
|
|
*/
|
|
|
#ifdef CONFIG_USE_GENERIC_SMP_HELPERS
|
|
|
+void __init call_function_init(void);
|
|
|
void generic_smp_call_function_single_interrupt(void);
|
|
|
void generic_smp_call_function_interrupt(void);
|
|
|
void ipi_call_lock(void);
|
|
|
void ipi_call_unlock(void);
|
|
|
void ipi_call_lock_irq(void);
|
|
|
void ipi_call_unlock_irq(void);
|
|
|
+#else
|
|
|
+static inline void call_function_init(void) { }
|
|
|
#endif
|
|
|
|
|
|
/*
|
|
@@ -134,7 +137,7 @@ static inline void smp_send_reschedule(int cpu) { }
|
|
|
#define smp_prepare_boot_cpu() do {} while (0)
|
|
|
#define smp_call_function_many(mask, func, info, wait) \
|
|
|
(up_smp_call_function(func, info))
|
|
|
-static inline void init_call_single_data(void) { }
|
|
|
+static inline void call_function_init(void) { }
|
|
|
|
|
|
static inline int
|
|
|
smp_call_function_any(const struct cpumask *mask, smp_call_func_t func,
|