git: b389817361ff - stable/13 - powerpc: Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 10 Jun 2022 12:34:20 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=b389817361ff9ed43167302e117360ffff935a92 commit b389817361ff9ed43167302e117360ffff935a92 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-06-04 08:39:50 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-06-10 12:31:23 +0000 powerpc: Fix two typos in source code comments - s/auxillary/auxiliary/ (cherry picked from commit d8dd4b2fd2bdedb33978692c82fc494aa594b8b2) --- 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 ded419bf843d..ef987c22f064 100644 --- a/sys/powerpc/powerpc/exec_machdep.c +++ b/sys/powerpc/powerpc/exec_machdep.c @@ -604,7 +604,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 */ @@ -633,7 +633,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 */