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

Attilio Rao attilio at FreeBSD.org
Sat Aug 13 17:17:05 UTC 2011


Author: attilio
Date: Sat Aug 13 17:17:04 2011
New Revision: 224845
URL: http://svn.freebsd.org/changeset/base/224845

Log:
  Fix a typo in cb_dumpdata() about wrongly calling wdog_kern_pat().
  
  Submitted by:	Andrew Boyer <aboyer at averesystems dot com>
  Approved by:	re (kib)

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

Modified: head/sys/mips/mips/dump_machdep.c
==============================================================================
--- head/sys/mips/mips/dump_machdep.c	Sat Aug 13 17:16:06 2011	(r224844)
+++ head/sys/mips/mips/dump_machdep.c	Sat Aug 13 17:17:04 2011	(r224845)
@@ -188,7 +188,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr
 		}
 
 #ifdef SW_WATCHDOG
-		wdog_kern_path(WD_LASTVAL);
+		wdog_kern_pat(WD_LASTVAL);
 #endif
 		error = dump_write(di, (void *)(intptr_t)(pa),0, dumplo, sz); /* XXX fix PA */
 		if (error)


More information about the svn-src-all mailing list