Browse Source

MIPS: Idle: Make call of function pointer readable.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechle 12 years ago
parent
commit
c9b6869dbb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/mips/kernel/idle.c

+ 1 - 1
arch/mips/kernel/idle.c

@@ -234,7 +234,7 @@ void arch_cpu_idle(void)
 {
 	smtc_idle_hook();
 	if (cpu_wait)
-		(*cpu_wait)();
+		cpu_wait();
 	else
 		local_irq_enable();
 }