Author: imp
Date: Thu Jan 15 07:48:37 2009
New Revision: 187293
URL: http://svn.freebsd.org/changeset/base/187293

Log:
  Reverse order of dumpsys and cpu_idle_wakeup to reduce diffs to p4.

Modified:
  head/sys/mips/mips/machdep.c

Modified: head/sys/mips/mips/machdep.c
==============================================================================
--- head/sys/mips/mips/machdep.c        Thu Jan 15 07:45:40 2009        
(r187292)
+++ head/sys/mips/mips/machdep.c        Thu Jan 15 07:48:37 2009        
(r187293)
@@ -418,16 +418,16 @@ cpu_idle(int busy)
                panic("ints disabled in idleproc!");
 }
 
-int
-cpu_idle_wakeup(int cpu)
+void
+dumpsys(struct dumperinfo *di __unused)
 {
 
-       return (0);
+       printf("Kernel dumps not implemented on this architecture\n");
 }
 
-void
-dumpsys(struct dumperinfo *di __unused)
+int
+cpu_idle_wakeup(int cpu)
 {
 
-       printf("Kernel dumps not implemented on this architecture\n");
+       return (0);
 }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to