1
0
Fork 0

smp: Fix idle_thread_init() inline stub

idle_thread_init() does not have arguments.

Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
wifi-calibration
Thomas Gleixner 2012-05-04 12:52:25 +02:00
parent 3bb5d2ee39
commit 43a18b1e58
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ void idle_threads_init(void);
#else
static inline struct task_struct *idle_thread_get(unsigned int cpu) { return NULL; }
static inline void idle_thread_set_boot_cpu(void) { }
static inline void idle_threads_init(unsigned int cpu) { }
static inline void idle_threads_init(void) { }
#endif
#endif