diff options
Diffstat (limited to 'arch/sparc/kernel/process.c')
-rw-r--r-- | arch/sparc/kernel/process.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/sparc/kernel/process.c b/arch/sparc/kernel/process.c index 19186ce8850d..0bd69d0b5cd7 100644 --- a/arch/sparc/kernel/process.c +++ b/arch/sparc/kernel/process.c | |||
@@ -141,16 +141,12 @@ void cpu_idle(void) | |||
141 | 141 | ||
142 | extern char reboot_command []; | 142 | extern char reboot_command []; |
143 | 143 | ||
144 | extern void (*prom_palette)(int); | ||
145 | |||
146 | /* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */ | 144 | /* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */ |
147 | void machine_halt(void) | 145 | void machine_halt(void) |
148 | { | 146 | { |
149 | local_irq_enable(); | 147 | local_irq_enable(); |
150 | mdelay(8); | 148 | mdelay(8); |
151 | local_irq_disable(); | 149 | local_irq_disable(); |
152 | if (prom_palette) | ||
153 | prom_palette (1); | ||
154 | prom_halt(); | 150 | prom_halt(); |
155 | panic("Halt failed!"); | 151 | panic("Halt failed!"); |
156 | } | 152 | } |
@@ -165,8 +161,6 @@ void machine_restart(char * cmd) | |||
165 | 161 | ||
166 | p = strchr (reboot_command, '\n'); | 162 | p = strchr (reboot_command, '\n'); |
167 | if (p) *p = 0; | 163 | if (p) *p = 0; |
168 | if (prom_palette) | ||
169 | prom_palette (1); | ||
170 | if (cmd) | 164 | if (cmd) |
171 | prom_reboot(cmd); | 165 | prom_reboot(cmd); |
172 | if (*reboot_command) | 166 | if (*reboot_command) |