aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/process.c')
-rw-r--r--arch/x86/kernel/process.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index 2efbfb712fb7..84f3cdae4407 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -340,7 +340,9 @@ EXPORT_SYMBOL(boot_option_idle_override);
340 * Powermanagement idle function, if any.. 340 * Powermanagement idle function, if any..
341 */ 341 */
342void (*pm_idle)(void); 342void (*pm_idle)(void);
343#if defined(CONFIG_APM_MODULE) && defined(CONFIG_APM_CPU_IDLE)
343EXPORT_SYMBOL(pm_idle); 344EXPORT_SYMBOL(pm_idle);
345#endif
344 346
345#ifdef CONFIG_X86_32 347#ifdef CONFIG_X86_32
346/* 348/*
@@ -400,7 +402,7 @@ void default_idle(void)
400 cpu_relax(); 402 cpu_relax();
401 } 403 }
402} 404}
403#ifdef CONFIG_APM_MODULE 405#if defined(CONFIG_APM_MODULE) && defined(CONFIG_APM_CPU_IDLE)
404EXPORT_SYMBOL(default_idle); 406EXPORT_SYMBOL(default_idle);
405#endif 407#endif
406 408