MIPS: Idle: Make call of function pointer readable.
authorRalf Baechle <ralf@linux-mips.org>
Tue, 21 May 2013 11:02:12 +0000 (13:02 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 21 May 2013 23:34:26 +0000 (01:34 +0200)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/idle.c

index b33875b..36e79f5 100644 (file)
@@ -234,7 +234,7 @@ void arch_cpu_idle(void)
 {
        smtc_idle_hook();
        if (cpu_wait)
-               (*cpu_wait)();
+               cpu_wait();
        else
                local_irq_enable();
 }