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

Robert Watson rwatson at FreeBSD.org
Thu Apr 17 20:42:04 UTC 2014


Author: rwatson
Date: Thu Apr 17 20:42:03 2014
New Revision: 264625
URL: http://svnweb.freebsd.org/changeset/base/264625

Log:
  Fix typo and case inconsistency in MIPS CP0 register names.
  
  MFC after:	3 days

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

Modified: head/sys/mips/mips/pm_machdep.c
==============================================================================
--- head/sys/mips/mips/pm_machdep.c	Thu Apr 17 20:09:41 2014	(r264624)
+++ head/sys/mips/mips/pm_machdep.c	Thu Apr 17 20:42:03 2014	(r264625)
@@ -413,7 +413,7 @@ set_mcontext(struct thread *td, const mc
 	td->td_frame->mullo = mcp->mullo;
 	td->td_frame->mulhi = mcp->mulhi;
 	td->td_md.md_tls = mcp->mc_tls;
-	/* Dont let user to set any bits in Status and casue registers */
+	/* Dont let user to set any bits in status and cause registers. */
 
 	return (0);
 }


More information about the svn-src-all mailing list