summaryrefslogtreecommitdiff
path: root/arch/arm/kernel/process.c
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2011-06-24 19:33:01 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:38:51 -0800
commit35226a84f238c29f4d6f2631bea93fb53cf5a680 (patch)
treefeb159fd20d8a4a7960aec1b2c57e06a18004893 /arch/arm/kernel/process.c
parent005c89ec72966a0ad282a72eae1c649427101610 (diff)
ARM: Move leds idle start/stop calls to idle notifiers
Change-Id: I5d8e4e85b17bbab7992ecb477f0bdb5e4138b166 Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org> Signed-off-by: Todd Poynor <toddpoynor@google.com>
Diffstat (limited to 'arch/arm/kernel/process.c')
-rw-r--r--arch/arm/kernel/process.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c
index a0d3034d273f..148625de8e4d 100644
--- a/arch/arm/kernel/process.c
+++ b/arch/arm/kernel/process.c
@@ -33,7 +33,6 @@
#include <linux/cpuidle.h>
#include <asm/cacheflush.h>
-#include <asm/leds.h>
#include <asm/processor.h>
#include <asm/system.h>
#include <asm/thread_notify.h>
@@ -184,7 +183,6 @@ void cpu_idle(void)
/* endless idle loop with no priority at all */
while (1) {
tick_nohz_stop_sched_tick(1);
- leds_event(led_idle_start);
idle_notifier_call_chain(IDLE_START);
while (!need_resched()) {
#ifdef CONFIG_HOTPLUG_CPU
@@ -210,7 +208,6 @@ void cpu_idle(void)
local_irq_enable();
}
}
- leds_event(led_idle_end);
idle_notifier_call_chain(IDLE_END);
tick_nohz_restart_sched_tick();
preempt_enable_no_resched();