Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jun 2022 08:40:19 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d8dd4b2fd2bd - main - powerpc: Fix two typos in source code comments
Message-ID:  <202206040840.2548eJ9V019217@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206040840.2548eJ9V019217>