]> Pileus Git - ~andy/linux/blobdiff - arch/alpha/kernel/process.c
alpha: Use generic idle loop
[~andy/linux] / arch / alpha / kernel / process.c
index 63d27fb9b023f745ad8c6c4d23526edb3c42bc8c..a3fd8a29ccac418b7299f9db23452733348e6219 100644 (file)
 void (*pm_power_off)(void) = machine_power_off;
 EXPORT_SYMBOL(pm_power_off);
 
-void
-cpu_idle(void)
-{
-       current_thread_info()->status |= TS_POLLING;
-
-       while (1) {
-               /* FIXME -- EV6 and LCA45 know how to power down
-                  the CPU.  */
-
-               rcu_idle_enter();
-               while (!need_resched())
-                       cpu_relax();
-
-               rcu_idle_exit();
-               schedule_preempt_disabled();
-       }
-}
-
-
 struct halt_info {
        int mode;
        char *restart_cmd;