Commit-ID:  e46746cd5542b74f1e34bb1b8a997c5c0a6e69ea
Gitweb:     http://git.kernel.org/tip/e46746cd5542b74f1e34bb1b8a997c5c0a6e69ea
Author:     Thomas Gleixner <t...@linutronix.de>
AuthorDate: Thu, 21 Mar 2013 22:49:42 +0100
Committer:  Thomas Gleixner <t...@linutronix.de>
CommitDate: Mon, 8 Apr 2013 17:39:24 +0200

c6x: Use generic idle loop

Signed-off-by: Thomas Gleixner <t...@linutronix.de>
Cc: Linus Torvalds <torva...@linux-foundation.org>
Cc: Rusty Russell <ru...@rustcorp.com.au>
Cc: Paul McKenney <paul...@linux.vnet.ibm.com>
Cc: Peter Zijlstra <pet...@infradead.org>
Reviewed-by: Cc: Srivatsa S. Bhat <srivatsa.b...@linux.vnet.ibm.com>
Cc: Magnus Damm <magnus.d...@gmail.com>
Cc: Mark Salter <msal...@redhat.com>
Link: http://lkml.kernel.org/r/20130321215234.087033...@linutronix.de
Signed-off-by: Thomas Gleixner <t...@linutronix.de>
---
 arch/c6x/Kconfig          |  1 +
 arch/c6x/kernel/process.c | 28 +---------------------------
 2 files changed, 2 insertions(+), 27 deletions(-)

diff --git a/arch/c6x/Kconfig b/arch/c6x/Kconfig
index f6a3648..af2aa4b 100644
--- a/arch/c6x/Kconfig
+++ b/arch/c6x/Kconfig
@@ -18,6 +18,7 @@ config C6X
        select OF_EARLY_FLATTREE
        select GENERIC_CLOCKEVENTS
        select MODULES_USE_ELF_RELA
+       select GENERIC_IDLE_LOOP
 
 config MMU
        def_bool n
diff --git a/arch/c6x/kernel/process.c b/arch/c6x/kernel/process.c
index 6434df4..57d2ea8 100644
--- a/arch/c6x/kernel/process.c
+++ b/arch/c6x/kernel/process.c
@@ -33,7 +33,7 @@ extern asmlinkage void ret_from_kernel_thread(void);
 void (*pm_power_off)(void);
 EXPORT_SYMBOL(pm_power_off);
 
-static void c6x_idle(void)
+void arch_cpu_idle(void)
 {
        unsigned long tmp;
 
@@ -49,32 +49,6 @@ static void c6x_idle(void)
                      : "=b"(tmp));
 }
 
-/*
- * The idle loop for C64x
- */
-void cpu_idle(void)
-{
-       /* endless idle loop with no priority at all */
-       while (1) {
-               tick_nohz_idle_enter();
-               rcu_idle_enter();
-               while (1) {
-                       local_irq_disable();
-                       if (need_resched()) {
-                               local_irq_enable();
-                               break;
-                       }
-                       c6x_idle(); /* enables local irqs */
-               }
-               rcu_idle_exit();
-               tick_nohz_idle_exit();
-
-               preempt_enable_no_resched();
-               schedule();
-               preempt_disable();
-       }
-}
-
 static void halt_loop(void)
 {
        printk(KERN_EMERG "System Halted, OK to turn off power\n");
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to