mirror of https://gitee.com/openkylin/linux.git
cpuidle: Consistent spelling of cpuidle_idle_call()
Commit a0bfa13738
mispells
cpuidle_idle_call() on ARM and SH code. Fix this to be consistent.
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: x86@kernel.org
Cc: Len Brown <len.brown@intel.com>
Signed-off-by: David Brown <davidb@codeaurora.org>
[ 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 <torvalds@linux-foundation.org>
This commit is contained in:
parent
53d1e658df
commit
cbc158d6bf
|
@ -197,7 +197,7 @@ void cpu_idle(void)
|
||||||
cpu_relax();
|
cpu_relax();
|
||||||
} else {
|
} else {
|
||||||
stop_critical_timings();
|
stop_critical_timings();
|
||||||
if (cpuidle_call_idle())
|
if (cpuidle_idle_call())
|
||||||
pm_idle();
|
pm_idle();
|
||||||
start_critical_timings();
|
start_critical_timings();
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -101,7 +101,7 @@ void cpu_idle(void)
|
||||||
local_irq_disable();
|
local_irq_disable();
|
||||||
/* Don't trace irqs off for idle */
|
/* Don't trace irqs off for idle */
|
||||||
stop_critical_timings();
|
stop_critical_timings();
|
||||||
if (cpuidle_call_idle())
|
if (cpuidle_idle_call())
|
||||||
pm_idle();
|
pm_idle();
|
||||||
/*
|
/*
|
||||||
* Sanity check to ensure that pm_idle() returns
|
* Sanity check to ensure that pm_idle() returns
|
||||||
|
|
Loading…
Reference in New Issue