diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2013-05-21 07:02:12 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-05-21 19:34:26 -0400 |
commit | c9b6869dbb3c6edb24e3cc76d3655067cfa7b802 (patch) | |
tree | 455b71b180489127190f74347de5ecb6052ce104 /arch/mips | |
parent | f91a148aa22b3808c12525ccc5779ff0ae6314a4 (diff) |
MIPS: Idle: Make call of function pointer readable.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/idle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/idle.c b/arch/mips/kernel/idle.c index b33875bf699d..36e79f528e89 100644 --- a/arch/mips/kernel/idle.c +++ b/arch/mips/kernel/idle.c | |||
@@ -234,7 +234,7 @@ void arch_cpu_idle(void) | |||
234 | { | 234 | { |
235 | smtc_idle_hook(); | 235 | smtc_idle_hook(); |
236 | if (cpu_wait) | 236 | if (cpu_wait) |
237 | (*cpu_wait)(); | 237 | cpu_wait(); |
238 | else | 238 | else |
239 | local_irq_enable(); | 239 | local_irq_enable(); |
240 | } | 240 | } |