MIPS: Idle: Make call of function pointer readable.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle 2013-05-21 13:02:12 +02:00
parent f91a148aa2
commit c9b6869dbb

View File

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