diff options
author | Sohil Mehta <sohil.mehta@intel.com> | 2023-07-27 18:05:32 +0000 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2023-07-28 10:17:53 +0200 |
commit | 54bfd02bbfcd0582bc4ebf6fd57fba323b141b5b (patch) | |
tree | 1a29eb27fe1901a1ed2152d972566c3761cd4ede | |
parent | 52defa4a5e719a57992aed52c8d3e214e75ac276 (diff) |
x86/smp: Remove a non-existent function declaration
x86_idle_thread_init() does not exist anywhere. Remove its declaration
from the header.
Signed-off-by: Sohil Mehta <sohil.mehta@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20230727180533.3119660-3-sohil.mehta@intel.com
-rw-r--r-- | arch/x86/include/asm/smp.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 600cf25dbfc6..094f31d3f950 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h @@ -132,7 +132,6 @@ void smp_kick_mwait_play_dead(void); void native_smp_send_reschedule(int cpu); void native_send_call_func_ipi(const struct cpumask *mask); void native_send_call_func_single_ipi(int cpu); -void x86_idle_thread_init(unsigned int cpu, struct task_struct *idle); bool smp_park_other_cpus_in_init(void); |