diff options
Diffstat (limited to 'arch/mips/kernel/cpu-probe.c')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 6e4807a19c00..4579d5c12da9 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -31,7 +31,7 @@ | |||
31 | * The wait instruction stops the pipeline and reduces the power consumption of | 31 | * The wait instruction stops the pipeline and reduces the power consumption of |
32 | * the CPU very much. | 32 | * the CPU very much. |
33 | */ | 33 | */ |
34 | void (*cpu_wait)(void) = NULL; | 34 | void (*cpu_wait)(void); |
35 | 35 | ||
36 | static void r3081_wait(void) | 36 | static void r3081_wait(void) |
37 | { | 37 | { |
@@ -112,7 +112,7 @@ static void au1k_wait(void) | |||
112 | : : "r" (au1k_wait)); | 112 | : : "r" (au1k_wait)); |
113 | } | 113 | } |
114 | 114 | ||
115 | static int __initdata nowait = 0; | 115 | static int __initdata nowait; |
116 | 116 | ||
117 | static int __init wait_disable(char *s) | 117 | static int __init wait_disable(char *s) |
118 | { | 118 | { |