aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/process_64.c')
-rw-r--r--arch/x86/kernel/process_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c
index 71553b664e2a..dfd3f5752085 100644
--- a/arch/x86/kernel/process_64.c
+++ b/arch/x86/kernel/process_64.c
@@ -90,7 +90,7 @@ DECLARE_PER_CPU(int, cpu_state);
90 90
91#include <asm/nmi.h> 91#include <asm/nmi.h>
92/* We halt the CPU with physical CPU hotplug */ 92/* We halt the CPU with physical CPU hotplug */
93static inline void play_dead(void) 93void native_play_dead(void)
94{ 94{
95 idle_task_exit(); 95 idle_task_exit();
96 mb(); 96 mb();
@@ -102,7 +102,7 @@ static inline void play_dead(void)
102 wbinvd_halt(); 102 wbinvd_halt();
103} 103}
104#else 104#else
105static inline void play_dead(void) 105void native_play_dead(void)
106{ 106{
107 BUG(); 107 BUG();
108} 108}