MIPS: Idle: cleaup SMTC idle hook as per Linux coding style.
authorRalf Baechle <ralf@linux-mips.org>
Tue, 21 May 2013 10:47:26 +0000 (12:47 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 21 May 2013 23:34:25 +0000 (01:34 +0200)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/idle.c

index 1e9d938..28abda7 100644 (file)
@@ -218,13 +218,18 @@ void __init check_wait(void)
        }
 }
 
-void arch_cpu_idle(void)
+static void smtc_idle_hook(void)
 {
 #ifdef CONFIG_MIPS_MT_SMTC
-       extern void smtc_idle_loop_hook(void);
+       void smtc_idle_loop_hook(void);
 
        smtc_idle_loop_hook();
 #endif
+}
+
+void arch_cpu_idle(void)
+{
+       smtc_idle_hook();
        if (cpu_wait)
                (*cpu_wait)();
        else