svn commit: r187293 - head/sys/mips/mips

Warner Losh imp at FreeBSD.org
Wed Jan 14 23:48:39 PST 2009


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);
 }


More information about the svn-src-head mailing list