diff options
| author | Nicolas Pitre <[email protected]> | 2014-02-17 10:59:30 -0500 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2014-02-22 18:18:36 +0100 |
| commit | 6990566b535908905b4eccda7cc9e09c2db52187 (patch) | |
| tree | 2d7e3bc3865acf55469f29e5c2cbc1ff2ca334b1 | |
| parent | 591ac0cb01ec8d0ff131a318f9b9abf6ecab6225 (diff) | |
cpuidle/arm64: Remove redundant cpuidle_idle_call()
The core idle loop now takes care of it.
Signed-off-by: Nicolas Pitre <[email protected]>
Acked-by: Catalin Marinas <[email protected]>
Signed-off-by: Peter Zijlstra <[email protected]>
Cc: Paul Burton <[email protected]>
Cc: Deepthi Dharwar <[email protected]>
Cc: Preeti U Murthy <[email protected]>
Cc: "Rafael J. Wysocki" <[email protected]>
Cc: Daniel Lezcano <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | arch/arm64/kernel/process.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c index 1c0a9be2ffa8..9cce0098f4cd 100644 --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c @@ -33,7 +33,6 @@ #include <linux/kallsyms.h> #include <linux/init.h> #include <linux/cpu.h> -#include <linux/cpuidle.h> #include <linux/elfcore.h> #include <linux/pm.h> #include <linux/tick.h> @@ -94,10 +93,8 @@ void arch_cpu_idle(void) * This should do all the clock switching and wait for interrupt * tricks */ - if (cpuidle_idle_call()) { - cpu_do_idle(); - local_irq_enable(); - } + cpu_do_idle(); + local_irq_enable(); } #ifdef CONFIG_HOTPLUG_CPU |