diff options
author | David Brown <davidb@codeaurora.org> | 2011-08-04 12:24:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-04 22:35:34 -0400 |
commit | cbc158d6bfa1990f7869717bb5270867c66068d1 (patch) | |
tree | 539ec1b63c3cd95dac354e4c3c677d63d9a4e1c8 /arch/arm/kernel | |
parent | 53d1e658df6e26d62500410719aaee2b82067c03 (diff) |
cpuidle: Consistent spelling of cpuidle_idle_call()
Commit a0bfa1373859e9d11dc92561a8667588803e42d8 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>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index d7ee0d4c072d..1a347f481e5e 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
@@ -197,7 +197,7 @@ void cpu_idle(void) | |||
197 | cpu_relax(); | 197 | cpu_relax(); |
198 | } else { | 198 | } else { |
199 | stop_critical_timings(); | 199 | stop_critical_timings(); |
200 | if (cpuidle_call_idle()) | 200 | if (cpuidle_idle_call()) |
201 | pm_idle(); | 201 | pm_idle(); |
202 | start_critical_timings(); | 202 | start_critical_timings(); |
203 | /* | 203 | /* |