1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Fix typo and case inconsistency in MIPS CP0 register names.

MFC after:	3 days
This commit is contained in:
Robert Watson 2014-04-17 20:42:03 +00:00
parent 080a4b9b1c
commit 3bad806bc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264625

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);
}