summaryrefslogtreecommitdiffstats
path: root/sys/mips
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2009-01-15 07:48:37 +0000
committerimp <imp@FreeBSD.org>2009-01-15 07:48:37 +0000
commit41a4baf4c0a88b86745324a5e3fb4bc2b403fb3a (patch)
tree52a17186d39ab1f681869269271e60ba0917362e /sys/mips
parentf3d3b3e6d14bec02eb902598e461117e9119a638 (diff)
downloadFreeBSD-src-41a4baf4c0a88b86745324a5e3fb4bc2b403fb3a.zip
FreeBSD-src-41a4baf4c0a88b86745324a5e3fb4bc2b403fb3a.tar.gz
Reverse order of dumpsys and cpu_idle_wakeup to reduce diffs to p4.
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/mips/machdep.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/mips/mips/machdep.c b/sys/mips/mips/machdep.c
index a4688c9..9735158 100644
--- a/sys/mips/mips/machdep.c
+++ b/sys/mips/mips/machdep.c
@@ -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);
}
OpenPOWER on IntegriCloud