Fix typo and case inconsistency in MIPS CP0 register names.

MFC after:	3 days
This commit is contained in:
rwatson 2014-04-17 20:42:03 +00:00
parent 7967459eb0
commit 695d374d8d

View File

@ -413,7 +413,7 @@ set_mcontext(struct thread *td, const mcontext_t *mcp)
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);
}