aboutsummaryrefslogtreecommitdiff
path: root/sys/mips
diff options
context:
space:
mode:
authorAttilio Rao <attilio@FreeBSD.org>2011-08-13 17:17:04 +0000
committerAttilio Rao <attilio@FreeBSD.org>2011-08-13 17:17:04 +0000
commite9969003828cecddc629aab34445281a021d6360 (patch)
treeeba84d78a7fe8d53dcc59ec79ed7d2c4d5648a17 /sys/mips
parentfd9a5f73f625845f02f396e38c39f521905d001f (diff)
downloadsrc-e9969003828cecddc629aab34445281a021d6360.tar.gz
src-e9969003828cecddc629aab34445281a021d6360.zip
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)
Notes
Notes: svn path=/head/; revision=224845
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/mips/dump_machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/mips/dump_machdep.c b/sys/mips/mips/dump_machdep.c
index 1dd69f759c25..bf8c4a3152f3 100644
--- a/sys/mips/mips/dump_machdep.c
+++ b/sys/mips/mips/dump_machdep.c
@@ -188,7 +188,7 @@ cb_dumpdata(struct md_pa *mdp, int seqnr, void *arg)
}
#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)