]> Git Repo - linux.git/commitdiff
cpuidle: Consistent spelling of cpuidle_idle_call()
authorDavid Brown <[email protected]>
Thu, 4 Aug 2011 16:24:31 +0000 (09:24 -0700)
committerLinus Torvalds <[email protected]>
Fri, 5 Aug 2011 02:35:34 +0000 (16:35 -1000)
Commit a0bfa1373859e9d11dc92561a8667588803e42d8 mispells
cpuidle_idle_call() on ARM and SH code.  Fix this to be consistent.

Cc: Kevin Hilman <[email protected]>
Cc: Paul Mundt <[email protected]>
Cc: [email protected]
Cc: Len Brown <[email protected]>
Signed-off-by: David Brown <[email protected]>
[ Also done by Mark Brown - th ebug has been around forever, and was
  noticed in -next, but the idle tree never picked it up. Bad bad bad ]
Signed-off-by: Linus Torvalds <[email protected]>
arch/arm/kernel/process.c
arch/sh/kernel/idle.c

index d7ee0d4c072d8dba133b8160ef1ed590e14638a0..1a347f481e5e7a5c022b7795c6b9542cb77d529e 100644 (file)
@@ -197,7 +197,7 @@ void cpu_idle(void)
                                cpu_relax();
                        } else {
                                stop_critical_timings();
-                               if (cpuidle_call_idle())
+                               if (cpuidle_idle_call())
                                        pm_idle();
                                start_critical_timings();
                                /*
index 3c45de1db71616f4e07700b8a9459b82f376136c..32114e0941ae7616aae53de88a9f79b895e973db 100644 (file)
@@ -101,7 +101,7 @@ void cpu_idle(void)
                        local_irq_disable();
                        /* Don't trace irqs off for idle */
                        stop_critical_timings();
-                       if (cpuidle_call_idle())
+                       if (cpuidle_idle_call())
                                pm_idle();
                        /*
                         * Sanity check to ensure that pm_idle() returns
This page took 0.061612 seconds and 4 git commands to generate.