git: d8dd4b2fd2bd - main - powerpc: Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 04 Jun 2022 08:40:19 UTC
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=d8dd4b2fd2bdedb33978692c82fc494aa594b8b2
commit d8dd4b2fd2bdedb33978692c82fc494aa594b8b2
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-06-04 08:39:50 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-06-04 08:39:50 +0000
powerpc: Fix two typos in source code comments
- s/auxillary/auxiliary/
MFC after: 3 days
---
sys/powerpc/powerpc/exec_machdep.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/powerpc/powerpc/exec_machdep.c b/sys/powerpc/powerpc/exec_machdep.c
index 572ddfa44d1f..1c868a7813b3 100644
--- a/sys/powerpc/powerpc/exec_machdep.c
+++ b/sys/powerpc/powerpc/exec_machdep.c
@@ -688,7 +688,7 @@ exec_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
tf->fixreg[3] = argc;
tf->fixreg[4] = stack + sizeof(register_t);
tf->fixreg[5] = stack + (2 + argc)*sizeof(register_t);
- tf->fixreg[6] = 0; /* auxillary vector */
+ tf->fixreg[6] = 0; /* auxiliary vector */
tf->fixreg[7] = 0; /* termination vector */
tf->fixreg[8] = (register_t)imgp->ps_strings; /* NetBSD extension */
@@ -717,7 +717,7 @@ ppc32_setregs(struct thread *td, struct image_params *imgp, uintptr_t stack)
tf->fixreg[3] = argc;
tf->fixreg[4] = stack + sizeof(uint32_t);
tf->fixreg[5] = stack + (2 + argc)*sizeof(uint32_t);
- tf->fixreg[6] = 0; /* auxillary vector */
+ tf->fixreg[6] = 0; /* auxiliary vector */
tf->fixreg[7] = 0; /* termination vector */
tf->fixreg[8] = (register_t)imgp->ps_strings; /* NetBSD extension */