# HG changeset patch
# User Jimi Xenidis <[EMAIL PROTECTED]>
# Node ID d7a63be8595e3b7f435ba2fc3352d6089a84a85d
# Parent  40b707df348824b7df499fe79b98289affad2485
[XEN][POWERPC] remove redundant and confusing restart/halt messages

Signed-off-by: Jimi Xenidis <[EMAIL PROTECTED]>
---
 xen/arch/powerpc/domain.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff -r 40b707df3488 -r d7a63be8595e xen/arch/powerpc/domain.c
--- a/xen/arch/powerpc/domain.c Sat Jan 20 19:13:44 2007 -0500
+++ b/xen/arch/powerpc/domain.c Sun Jan 21 07:47:35 2007 -0500
@@ -105,13 +105,13 @@ void arch_domain_destroy(struct domain *
 
 static void machine_fail(const char *s)
 {
-    printk("%s failed, manual powercycle required!\n", s);
+    printk("%s failed, manual powercycle required!\n"
+           "  spinning....\n", s);
     for (;;)
         sleep();
 }
 void machine_halt(void)
 {
-    printk("machine_halt called: spinning....\n");
     console_start_sync();
     printk("%s called\n", __func__);
     rtas_halt();
@@ -121,7 +121,6 @@ void machine_halt(void)
 
 void machine_restart(char * __unused)
 {
-    printk("machine_restart called: spinning....\n");
     console_start_sync();
     printk("%s called\n", __func__);
     rtas_reboot();

_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@lists.xensource.com
http://lists.xensource.com/xen-ppc-devel

Reply via email to