diff options
author | Nicolas Pitre <[email protected]> | 2014-01-29 12:45:11 -0500 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2014-02-11 09:58:26 +0100 |
commit | f0c5cdb5cf89e56bdef9d71da89d4966dea6ef71 (patch) | |
tree | 34d07349f2ffed4417ef920dc11791048604a7c0 | |
parent | d8c6ad3184ca6516a5cf457af1afaa293d8f09c0 (diff) |
sched/idle, SH: Remove redundant cpuidle_idle_call()
The core idle loop now takes care of it.
Signed-off-by: Nicolas Pitre <[email protected]>
Acked-by: Daniel Lezcano <[email protected]>
Cc: Preeti U Murthy <[email protected]>
Cc: Paul Mundt <[email protected]>
Cc: "Rafael J. Wysocki" <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: Russell King <[email protected]>
Cc: [email protected]
Cc: Benjamin Herrenschmidt <[email protected]>
Signed-off-by: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/sh/kernel/idle.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index 2ea4483fd722..be616ee0cf87 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c @@ -16,7 +16,6 @@ #include <linux/thread_info.h> #include <linux/irqflags.h> #include <linux/smp.h> -#include <linux/cpuidle.h> #include <linux/atomic.h> #include <asm/pgalloc.h> #include <asm/smp.h> @@ -40,8 +39,7 @@ void arch_cpu_idle_dead(void) void arch_cpu_idle(void) { - if (cpuidle_idle_call()) - sh_idle(); + sh_idle(); } void __init select_idle_routine(void) |