Merge branch 'linus' into cont_syslog
[safe/jmp/linux-2.6] / arch / mips / lasat / reset.c
index 9e22acf..b1e7a89 100644 (file)
@@ -31,14 +31,13 @@ static void lasat_machine_restart(char *command);
 static void lasat_machine_halt(void);
 
 /* Used to set machine to boot in service mode via /proc interface */
-int lasat_boot_to_service = 0;
+int lasat_boot_to_service;
 
 static void lasat_machine_restart(char *command)
 {
        local_irq_disable();
 
        if (lasat_boot_to_service) {
-               printk("machine_restart: Rebooting to service mode\n");
                *(volatile unsigned int *)0xa0000024 = 0xdeadbeef;
                *(volatile unsigned int *)0xa00000fc = 0xfedeabba;
        }
@@ -46,17 +45,10 @@ static void lasat_machine_restart(char *command)
        for (;;) ;
 }
 
-#define MESSAGE "System halted"
 static void lasat_machine_halt(void)
 {
        local_irq_disable();
 
-       /* Disable interrupts and loop forever */
-       printk(KERN_NOTICE MESSAGE "\n");
-#ifdef CONFIG_PICVUE
-       pvc_clear();
-       pvc_write_string(MESSAGE, 0, 0);
-#endif
        prom_monitor();
        for (;;) ;
 }