diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-10-22 17:31:26 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2018-10-22 17:31:26 +0000 |
commit | 434c76b446722a16c01e2876accd9f0fb6dc1840 (patch) | |
tree | fc76c6aebe35d7f050d1b1756ad5a64a22e6c2d4 /sys/arch | |
parent | af2a4a3e76ab12afc46cc2224c71d38fd0511e40 (diff) |
More "explicitely" -> "explicitly" in various comments.
ok guenther@ tb@ deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/m88k/m88k/m88k_machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mips64/include/pmap.h | 4 | ||||
-rw-r--r-- | sys/arch/mips64/mips64/fp_emulate.c | 4 | ||||
-rw-r--r-- | sys/arch/mips64/mips64/pmap.c | 4 | ||||
-rw-r--r-- | sys/arch/powerpc/powerpc/pmap.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/m88k/m88k/m88k_machdep.c b/sys/arch/m88k/m88k/m88k_machdep.c index 2d1d9fd670e..46a20b8f44a 100644 --- a/sys/arch/m88k/m88k/m88k_machdep.c +++ b/sys/arch/m88k/m88k/m88k_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: m88k_machdep.c,v 1.68 2017/05/29 14:19:50 mpi Exp $ */ +/* $OpenBSD: m88k_machdep.c,v 1.69 2018/10/22 17:31:24 krw Exp $ */ /* * Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr. * Copyright (c) 1996 Nivas Madhur @@ -188,7 +188,7 @@ setregs(p, pack, stack, retval) /* * ... unless we are starting init, in which case we * won't be returning through the regular path, and - * need to explicitely set up nip and fip (note that + * need to explicitly set up nip and fip (note that * 88110 do not need such a test). * Note that this isn't 100% correct, as it mishandles * a real execve() from userspace by process 1. However diff --git a/sys/arch/mips64/include/pmap.h b/sys/arch/mips64/include/pmap.h index 33fbc7cb094..df76f26e314 100644 --- a/sys/arch/mips64/include/pmap.h +++ b/sys/arch/mips64/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.46 2016/12/22 15:33:36 visa Exp $ */ +/* $OpenBSD: pmap.h,v 1.47 2018/10/22 17:31:25 krw Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -132,7 +132,7 @@ typedef struct pmap { (sizeof(struct pmap_asid_info) * ((x) - 1)))) /* machine-dependent pg_flags */ -#define PGF_UNCACHED PG_PMAP0 /* Page is explicitely uncached */ +#define PGF_UNCACHED PG_PMAP0 /* Page is explicitly uncached */ #define PGF_CACHED PG_PMAP1 /* Page is currently cached */ #define PGF_ATTR_MOD PG_PMAP2 #define PGF_ATTR_REF PG_PMAP3 diff --git a/sys/arch/mips64/mips64/fp_emulate.c b/sys/arch/mips64/mips64/fp_emulate.c index 8d1bc8eebfc..cb497b85e7f 100644 --- a/sys/arch/mips64/mips64/fp_emulate.c +++ b/sys/arch/mips64/mips64/fp_emulate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fp_emulate.c,v 1.19 2017/09/16 05:04:34 visa Exp $ */ +/* $OpenBSD: fp_emulate.c,v 1.20 2018/10/22 17:31:25 krw Exp $ */ /* * Copyright (c) 2010 Miodrag Vallat. @@ -579,7 +579,7 @@ fpu_emulate_cop1(struct proc *p, struct trapframe *tf, uint32_t insn) /* * Check for valid format. FRType assumes bit 25 is always set, - * so we need to check for it explicitely. + * so we need to check for it explicitly. */ if ((insn & (1 << 25)) == 0) diff --git a/sys/arch/mips64/mips64/pmap.c b/sys/arch/mips64/mips64/pmap.c index 48ae996fde2..876434c3ec5 100644 --- a/sys/arch/mips64/mips64/pmap.c +++ b/sys/arch/mips64/mips64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.110 2018/05/09 14:42:11 visa Exp $ */ +/* $OpenBSD: pmap.c,v 1.111 2018/10/22 17:31:25 krw Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -1856,7 +1856,7 @@ pmap_enter_pv(pmap_t pmap, vaddr_t va, vm_page_t pg, pt_entry_t *npte) if ((pg->pg_flags & PGF_CACHED) == 0) { /* * If page is not mapped cached it's either because - * an uncached mapping was explicitely requested or + * an uncached mapping was explicitly requested or * we have a VAC situation. * Map this page uncached as well. */ diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c index 2adb27d3f4b..e85e69785ca 100644 --- a/sys/arch/powerpc/powerpc/pmap.c +++ b/sys/arch/powerpc/powerpc/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.167 2017/05/16 20:52:54 kettenis Exp $ */ +/* $OpenBSD: pmap.c,v 1.168 2018/10/22 17:31:25 krw Exp $ */ /* * Copyright (c) 2015 Martin Pieuchot @@ -1086,7 +1086,7 @@ pmap_zero_page(struct vm_page *pg) /* * Loop over & zero cache lines. This code assumes that 64-bit - * CPUs have 128-byte cache lines. We explicitely use ``dcbzl'' + * CPUs have 128-byte cache lines. We explicitly use ``dcbzl'' * here because we do not clear the DCBZ_SIZE bit of the HID5 * register in order to be compatible with code using ``dcbz'' * and assuming that cache line size is 32. |